diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-11 21:36:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 14:36:26 +0100 |
commit | 3d49d39cd8a322b201d0b72ff5372f871e1b93d2 (patch) | |
tree | 2a7010e6c3568951cc7b24cc3772ac2586a714f6 /.github/workflows | |
parent | 80a02d1cef9bd4880e5952d3d0328dac5c7457ad (diff) | |
download | rneovim-3d49d39cd8a322b201d0b72ff5372f871e1b93d2.tar.gz rneovim-3d49d39cd8a322b201d0b72ff5372f871e1b93d2.tar.bz2 rneovim-3d49d39cd8a322b201d0b72ff5372f871e1b93d2.zip |
ci(tsan): run functionaltests instead of oldtests (#21744)
With TUI as an external process oldtests no longer involve threads, so
TSAN isn't useful. Meanwhile functionaltests may involve threads.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e727448b9..48338527f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -261,11 +261,11 @@ jobs: name: Unittests run: ./ci/run_tests.sh unittests - - if: matrix.flavor != 'tsan' && (success() || failure() && steps.abort_job.outputs.status == 'success') + - if: success() || failure() && steps.abort_job.outputs.status == 'success' name: Functionaltests run: ./ci/run_tests.sh functionaltests - - if: success() || failure() && steps.abort_job.outputs.status == 'success' + - if: matrix.flavor != 'tsan' && (success() || failure() && steps.abort_job.outputs.status == 'success') name: Oldtests run: ./ci/run_tests.sh oldtests |