From 6584b09ba3e05f09880b65bd49cd6f7b273a8761 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Tue, 15 Dec 2020 16:53:24 +0000 Subject: [PATCH] Exit with success at end of collect-artifacts script So that following commands in the semaphore epilogue can still run even if some artifact collection fails. --- .semaphore/collect-artifacts | 1 + 1 file changed, 1 insertion(+) diff --git a/.semaphore/collect-artifacts b/.semaphore/collect-artifacts index 155b1418b2..05dc875e56 100755 --- a/.semaphore/collect-artifacts +++ b/.semaphore/collect-artifacts @@ -37,3 +37,4 @@ if [ -s fv/data-races.log ]; then xz < fv/data-races.log > artifacts/data-races.log.xz fi tar -cJf artifacts/binaries.tar.xz bin/calico-felix-amd64 bin/calico-bpf bin/test-* +exit 0