From 3457f51d99595028c2d8f13f57c0d2ecbc835ab6 Mon Sep 17 00:00:00 2001 From: dandds Date: Mon, 16 Dec 2019 10:47:22 -0500 Subject: [PATCH] CI script should fail hard. Right now, unit test failures in script/cibuild are not being emitted correctly. Instead, we'll just `set -e` at the top of the CI script so that failures are fast and obvious. --- script/cibuild | 1 + 1 file changed, 1 insertion(+) diff --git a/script/cibuild b/script/cibuild index 55bc7857..f0011051 100755 --- a/script/cibuild +++ b/script/cibuild @@ -1,4 +1,5 @@ #!/bin/bash +set -e # script/cibuild: Run CI related checks and tests