drop Nim 1.2 testing from GitHub Actions CI (#4525)

This commit is contained in:
tersec 2023-01-19 17:55:39 +00:00 committed by GitHub
parent b2b111b474
commit 6818120849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 14 deletions

View File

@ -26,7 +26,7 @@ jobs:
cpu: amd64
- os: windows
cpu: amd64
branch: [version-1-2, version-1-6]
branch: [version-1-6]
include:
- target:
os: linux
@ -148,12 +148,7 @@ jobs:
- name: Build binaries (with trace logging enabled)
run: |
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
# 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 || false
else
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} LOG_LEVEL=TRACE
fi
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} LOG_LEVEL=TRACE
# The Windows image runs out of disk space, so make some room
rm -rf build nimcache
@ -172,12 +167,7 @@ jobs:
- name: Run tests
run: |
if [[ "${{ matrix.branch }}" == "version-1-6" ]]; then
# 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
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
# The upload creates a combined report that gets posted as a comment on the PR
# https://github.com/EnricoMi/publish-unit-test-result-action

View File

@ -19,7 +19,7 @@ jobs:
cpu: amd64
- os: windows
cpu: amd64
branch: [version-1-2, version-1-6, devel]
branch: [version-1-6, devel]
include:
- target:
os: linux