From 9f7d5e29b3a109c76001b688b713fb11818ae52a Mon Sep 17 00:00:00 2001 From: Jean-Christophe Hugly Date: Tue, 3 Sep 2024 17:31:15 +0200 Subject: [PATCH] Use a more forgiving setting for the e2e tests. That is, until we figure out why they've become flaky. --- .buildkite/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 72c9c14cdb..766833d3ce 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -116,7 +116,7 @@ steps: - ./scion.sh run - tools/await-connectivity - ./bin/scion_integration || ( echo "^^^ +++" && false ) - - ./bin/end2end_integration || ( echo "^^^ +++" && false ) + - ./bin/end2end_integration --attempts=3 || ( echo "^^^ +++" && false ) plugins: &scion-run-hooks - scionproto/metahook#v0.3.0: pre-command: .buildkite/cleanup-leftovers.sh @@ -142,7 +142,7 @@ steps: - ./scion.sh topology -c topology/default-no-peers.topo - ./scion.sh run - tools/await-connectivity - - ./bin/end2end_integration || ( echo "^^^ +++" && false ) + - ./bin/end2end_integration --attempts=3 || ( echo "^^^ +++" && false ) - ./tools/integration/revocation_test.sh plugins: *scion-run-hooks artifact_paths: *scion-run-artifact-paths @@ -158,7 +158,7 @@ steps: - ./scion.sh run - tools/await-connectivity - echo "--- run tests" - - ./bin/end2end_integration -d || ( echo "^^^ +++" && false ) + - ./bin/end2end_integration -d --attempts=3 || ( echo "^^^ +++" && false ) plugins: *scion-run-hooks artifact_paths: *scion-run-artifact-paths timeout_in_minutes: 15