From 04ec80c0121e3e917198ee368f37b54e7cd1dc82 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 31 Oct 2023 12:13:36 -0700 Subject: [PATCH] Jenkinsfile: Skip 'test_vfio' and 'test_vfio_user' on AMD workers See: #5895 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') {