Setup rest of season 2024

This commit is contained in:
Julian Arndt
2023-08-14 14:35:30 +02:00
parent 23cef6f545
commit 29f00f39aa
7 changed files with 17 additions and 12 deletions

View File

@@ -41,8 +41,8 @@ pipeline {
stage('Trigger Tool') {
steps {
echo 'Trigger jobs'
// build wait: false, job: 'TippligaUpdater'
// build wait: false, job: 'WTLPokalUpdater'
build wait: false, job: 'TippligaUpdater'
build wait: false, job: 'WTLPokalUpdater'
}
}
}

View File

@@ -40,11 +40,11 @@ pipeline {
String lastChecksumWTLPokal = readFile 'last/checksum_wtlpokal.txt'
if(!checksumTippliga.equals(lastChecksumTippliga)){
telegramSendManual('Tippliga Update')
// build wait: false, job: 'TippligaUpdater'
build wait: false, job: 'TippligaUpdater'
}
if(!checksumWTLPokal.equals(lastChecksumWTLPokal)){
telegramSendManual('WTL-Pokal Update')
// build wait: false, job: 'WTLPokalUpdater'
build wait: false, job: 'WTLPokalUpdater'
}
}
}

View File

@@ -33,8 +33,8 @@ pipeline {
stage('Trigger') {
steps {
echo 'Trigger jobs'
// build wait: false, job: 'TippligaUpdater'
// build wait: false, job: 'WTLPokalUpdater'
build wait: false, job: 'TippligaUpdater'
build wait: false, job: 'WTLPokalUpdater'
}
}
}