diff --git a/scheduled-jobs/build/ocp4_scan_konflux/Jenkinsfile b/scheduled-jobs/build/ocp4_scan_konflux/Jenkinsfile index a7707730d4..e7af339a2e 100644 --- a/scheduled-jobs/build/ocp4_scan_konflux/Jenkinsfile +++ b/scheduled-jobs/build/ocp4_scan_konflux/Jenkinsfile @@ -26,19 +26,11 @@ node { "-vv", "--working-dir=${WORKSPACE}/artcd_working", "--config=./config/artcd.toml", - "schedule-ocp4-scan-konflux", - "--version=4.13", // to be removed once we have full capacity - "--version=4.14", // to be removed once we have full capacity - "--version=4.15", // to be removed once we have full capacity - "--version=4.16", // to be removed once we have full capacity - "--version=4.17", // to be removed once we have full capacity - "--version=4.18", // to be removed once we have full capacity - "--version=4.19", // to be removed once we have full capacity + "schedule-ocp4-scan-konflux" ] - // Uncomment following lines to scan all arches (to be done once we have full capacity) - //for ( version in commonlib.ocp4Versions ) { - // cmd << "--version=${version}" - //} + for ( version in commonlib.ocp4Versions ) { + cmd << "--version=${version}" + } withCredentials([ string(credentialsId: 'jenkins-service-account', variable: 'JENKINS_SERVICE_ACCOUNT'),