From c70f133b729d451b6d2228d5a1404db0c6bac5e3 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Thu, 14 Sep 2023 13:49:49 -0700 Subject: [PATCH] build: Skip 'test_vfio' on AMD workers See: #5775 Signed-off-by: Bo Chen --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f285e7d14..07002f953 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -142,7 +142,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration' + sh 'scripts/dev_cli.sh tests --integration -- -- --skip common_parallel::test_vfio' } } stage('Run live-migration integration tests') { @@ -160,7 +160,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration --libc musl' + sh 'scripts/dev_cli.sh tests --integration --libc musl -- -- --skip common_parallel::test_vfio' } } stage('Run live-migration integration tests for musl') {