Run image tests in PSI only

AWS does not have nested virtualization.
This commit is contained in:
Major Hayden 2020-06-05 13:14:30 -05:00 committed by GitHub
parent daec7e8234
commit 11c1063729
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ pipeline {
parallel {
stage('Fedora 31') {
agent { label "fedora31" }
agent { label "fedora31 && psi" }
environment { TEST_TYPE = "image" }
steps {
unstash 'fedora31'
@ -95,7 +95,7 @@ pipeline {
}
}
stage('Fedora 32') {
agent { label "fedora32" }
agent { label "fedora32 && psi" }
environment { TEST_TYPE = "image" }
steps {
unstash 'fedora32'
@ -108,7 +108,7 @@ pipeline {
}
}
stage('RHEL 8 CDN') {
agent { label "rhel8" }
agent { label "rhel8 && psi" }
environment { TEST_TYPE = "image" }
steps {
unstash 'rhel8cdn'
@ -150,4 +150,4 @@ void preserve_logs(test_slug) {
artifacts: "${test_slug}/*.log"
)
}
}