bacalhau-project / bacalhau

Compute over Data framework for public, transparent, and optionally verifiable computation
https://docs.bacalhau.org
Apache License 2.0
707 stars 89 forks source link

Prevent False Positives in CI #4635

Closed linear[bot] closed 4 weeks ago

linear[bot] commented 1 month ago

Since all of our CI scripts are run with BASH, we need to make sure that any unexpected non zero exit code instruction in the script should fail the CI run.

We need to add the snippet below to all our CI scripts

set -eu -o pipefail 
linear[bot] commented 1 month ago

ENG-282 Prevent False Positives in CI