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:
parent
a359dbe23e
commit
29b69129dc
|
@ -232,8 +232,8 @@ jobs:
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
|
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
|
||||||
# hide the CI failure in GitHub's UI
|
# 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 || true
|
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test || false
|
||||||
else
|
else
|
||||||
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
|
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue