From bcb411b4d61750081c080a0b0c656b25d3f67f31 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 4 Aug 2023 16:52:13 +0200 Subject: [PATCH] ci: Skip failures in live_migration::* These tests require a binary from a previous release to perform a migration. That binary doesn't yet have the shutdown fixes and thus these tests are supposed to fail. The tests are to be re-enabled after the next release. Signed-off-by: Anatol Belski --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7733233ae..a0dd01a79 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -151,7 +151,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration-live-migration' + sh 'scripts/dev_cli.sh tests --integration-live-migration --integration -- -- --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog_local' } } stage('Run integration tests for musl') { @@ -169,7 +169,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration-live-migration --libc musl' + sh 'scripts/dev_cli.sh tests --integration-live-migration --libc musl -- -- --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog_local' } } }