From 11c1063729da804690571535d3de48e7521ea89e Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 5 Jun 2020 13:14:30 -0500 Subject: [PATCH] Run image tests in PSI only AWS does not have nested virtualization. --- schutzbot/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index b12333f7..f3578d57 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -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" ) -} \ No newline at end of file +}