Skip to content

Commit

Permalink
Merge pull request #965 from AntelopeIO/no_eos-vm_tests_asan_ubsan
Browse files Browse the repository at this point in the history
[1.0.4] skip EOS VM interpreter parallel unit_tests and spec_tests on sanitizer builds
  • Loading branch information
spoonincode authored Nov 7, 2024
2 parents da6b82f + 57cc596 commit 4ebe18b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,14 @@ jobs:
with:
name: ${{matrix.cfg.builddir}}-build
- name: Run Parallel Tests
env:
IS_SAN: ${{endsWith(matrix.cfg.name, 'san') && 'yes' || ''}}
run: |
# https://github.com/actions/runner/issues/2033 -- need this because of full version label test looking at git revs
chown -R $(id -u):$(id -g) $PWD
zstdcat build.tar.zst | tar x
cd build
ctest --output-on-failure -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" --timeout 480
ctest --output-on-failure -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" ${IS_SAN:+-E 'eos-vm$'} --timeout 480
- name: Upload core files from failed tests
uses: actions/upload-artifact@v4
if: failure()
Expand Down

0 comments on commit 4ebe18b

Please sign in to comment.