don't hide Nim 1.6 build failures (#3685)

This commit is contained in:
tersec 2022-06-01 00:57:42 +00:00 committed by GitHub
parent f929980bf3
commit 09663e00d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -212,8 +212,8 @@ jobs:
- name: Smoke test the Beacon Node and Validator Client with all tracing enabled
run: |
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
# hide the CI failure in GitHub's UI
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} LOG_LEVEL=TRACE nimbus_beacon_node nimbus_validator_client || true
# change to "|| true" to hide the CI failures in GitHub's UI (escape hatch if a blocker is detected in 1.6)
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} LOG_LEVEL=TRACE nimbus_beacon_node nimbus_validator_client || false
else
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} LOG_LEVEL=TRACE nimbus_beacon_node nimbus_validator_client
fi
@ -221,8 +221,8 @@ jobs:
- name: Build all tools
run: |
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
# hide the CI failure in GitHub's UI
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} || true
# change to "|| true" to hide the CI failures in GitHub's UI (escape hatch if a blocker is detected in 1.6)
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} || false
else
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }}
fi