From a0fae2f0b1dbaeff85e5152d736e1ba8a9a79669 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 20 Sep 2021 00:04:24 +0200 Subject: [PATCH] Exposing a CI_PASSED environment variable --- bin/run_ci_tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/run_ci_tests.sh b/bin/run_ci_tests.sh index bc0e2e7..e380ead 100755 --- a/bin/run_ci_tests.sh +++ b/bin/run_ci_tests.sh @@ -50,8 +50,10 @@ cleanup if [[ $ret == 0 ]]; then echo "Status: PASSED" + export CI_PASSED=1 else echo "Status: FAILED" + export CI_PASSED=0 fi exit $ret