schutzbot: move the ostree test to RHEL 8

RHEL 8.3 is GA so we can run the ostree test here. This is a first step
to remove the RHEL 8.3 testing pipeline.

8.3 GA also ships a different version of composer-cli, therefore a slight
adjustment was needed.
This commit is contained in:
Ondřej Budai 2020-11-05 20:25:10 +01:00
parent 3d9c5692f5
commit cbb8640266
2 changed files with 23 additions and 23 deletions

24
schutzbot/Jenkinsfile vendored
View file

@ -243,6 +243,18 @@ pipeline {
}
}
}
stage('EL8 OSTree') {
agent { label "rhel8cloudbase && psi && x86_64" }
steps {
unstash 'rhel8cdn'
run_tests('ostree')
}
post {
always {
preserve_logs('rhel8-ostree')
}
}
}
stage('EL8.3 Base') {
agent { label "rhel83cloudbase && x86_64 && aws" }
@ -304,18 +316,6 @@ pipeline {
}
}
}
stage('EL8.3 OSTree') {
agent { label "rhel83cloudbase && psi && x86_64" }
steps {
unstash 'rhel83'
run_tests('ostree')
}
post {
always {
preserve_logs('rhel83-ostree')
}
}
}
}
}
}