Only run image tests in PSI

AWS has no nested virtualization.
This commit is contained in:
Major Hayden 2020-06-05 13:13:52 -05:00 committed by GitHub
parent 7979a705b6
commit 904750965a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,7 +101,7 @@ pipeline {
}
}
stage('Fedora 31 image') {
agent { label "fedora31" }
agent { label "fedora31 && psi" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
@ -130,7 +130,7 @@ pipeline {
}
}
stage('Fedora 32 image') {
agent { label "fedora32" }
agent { label "fedora32 && psi" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
@ -159,7 +159,7 @@ pipeline {
}
}
stage('RHEL 8 CDN Image') {
agent { label "rhel8" }
agent { label "rhel8 && psi" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
@ -204,4 +204,4 @@ void preserve_logs(test_slug) {
artifacts: "${test_slug}/*.log"
)
}
}