Update Jenkinsfiles to JDK22
This commit is contained in:
4
jenkinsfiles/APIFootballUpdater/Jenkinsfile
vendored
4
jenkinsfiles/APIFootballUpdater/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode APIFootballUpdater --season ${season} --league 1 --configFile Tippliga 2>&1 >> log.txt"
|
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode APIFootballUpdater --season ${season} --league 1 --configFile Tippliga 2>&1 >> log.txt"
|
||||||
|
|||||||
4
jenkinsfiles/CheckGistUpdates/Jenkinsfile
vendored
4
jenkinsfiles/CheckGistUpdates/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('GetAndWriteChecksum') {
|
stage('GetAndWriteChecksum') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
String checksum_tippliga = sh returnStdout: true, script: "java -jar build/libs/tlw-database-tool-1.0.jar --mode PostChecksum --season ${season} --league 1 --configFile Tippliga 2>&1"
|
String checksum_tippliga = sh returnStdout: true, script: "java -jar build/libs/tlw-database-tool-1.0.jar --mode PostChecksum --season ${season} --league 1 --configFile Tippliga 2>&1"
|
||||||
writeFile file: 'checksum_tippliga.txt', text: checksum_tippliga
|
writeFile file: 'checksum_tippliga.txt', text: checksum_tippliga
|
||||||
|
|||||||
4
jenkinsfiles/LigaCupUpdater/Jenkinsfile
vendored
4
jenkinsfiles/LigaCupUpdater/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 49 --configFile EM-Tippspiel 2>&1 >> log.txt"
|
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 49 --configFile EM-Tippspiel 2>&1 >> log.txt"
|
||||||
|
|||||||
4
jenkinsfiles/SupercupUpdater/Jenkinsfile
vendored
4
jenkinsfiles/SupercupUpdater/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 45 --configFile Supercup 2>&1 >> log.txt"
|
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 45 --configFile Supercup 2>&1 >> log.txt"
|
||||||
|
|||||||
4
jenkinsfiles/TippligaUpdater/Jenkinsfile
vendored
4
jenkinsfiles/TippligaUpdater/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
sh "ls build/libs"
|
sh "ls build/libs"
|
||||||
|
|||||||
4
jenkinsfiles/WTLPokalUpdater/Jenkinsfile
vendored
4
jenkinsfiles/WTLPokalUpdater/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 48 --configFile WTL-Pokal 2>&1 >> log.txt"
|
sh "java -jar build/libs/tlw-database-tool-1.0.jar --mode MatchesUpdaterFootball --season ${season} --league 48 --configFile WTL-Pokal 2>&1 >> log.txt"
|
||||||
|
|||||||
4
jenkinsfiles/WhatsAppReminder/Jenkinsfile
vendored
4
jenkinsfiles/WhatsAppReminder/Jenkinsfile
vendored
@@ -10,7 +10,7 @@ pipeline {
|
|||||||
stage('Execute') {
|
stage('Execute') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
@@ -19,7 +19,7 @@ pipeline {
|
|||||||
string(credentialsId: 'OPENAI_TOKEN', variable: 'OPENAI_TOKEN')
|
string(credentialsId: 'OPENAI_TOKEN', variable: 'OPENAI_TOKEN')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2",
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2",
|
||||||
"TLW_WHATSAPP_HOST=https://tlw-whatsapp.codeam.io"
|
"TLW_WHATSAPP_HOST=https://tlw-whatsapp.codeam.io"
|
||||||
]) {
|
]) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
4
jenkinsfiles/build/Jenkinsfile
vendored
4
jenkinsfiles/build/Jenkinsfile
vendored
@@ -10,14 +10,14 @@ pipeline {
|
|||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
String jdkPath = tool name: 'OpenJDK19', type: 'jdk'
|
String jdkPath = tool name: 'OpenJDK22', type: 'jdk'
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
usernamePassword(credentialsId: 'aws', usernameVariable: 'AWS_ACCESS_KEY_ID', passwordVariable: 'AWS_SECRET_KEY'),
|
||||||
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
usernamePassword(credentialsId: 'forum_database', usernameVariable: 'TLW_DATABASE_USERNAME', passwordVariable: 'TLW_DATABASE_PASSWORD'),
|
||||||
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
usernamePassword(credentialsId: 'forum_user', usernameVariable: 'FORUM_USERNAME', passwordVariable: 'FORUM_PASSWORD')
|
||||||
]) {
|
]) {
|
||||||
withEnv([
|
withEnv([
|
||||||
"JAVA_HOME=${jdkPath}/jdk-19.0.2"
|
"JAVA_HOME=${jdkPath}/jdk-22.0.2"
|
||||||
]) {
|
]) {
|
||||||
sh returnStdout: false, script: "./gradlew build -x test"
|
sh returnStdout: false, script: "./gradlew build -x test"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user