enable hard failures for nim 1.6 in CI (#3642)

makes errors more visible, now that it's sort of working again
This commit is contained in:
Jacek Sieka 2022-05-19 04:07:33 +02:00 committed by GitHub
parent a359dbe23e
commit 29b69129dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -232,8 +232,8 @@ jobs:
- name: Run tests
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 }} DISABLE_TEST_FIXTURES_SCRIPT=1 test || 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 }} DISABLE_TEST_FIXTURES_SCRIPT=1 test || false
else
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
fi