diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-05-24 21:14:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-24 21:14:47 +0200 |
| commit | ebb10d624825468c1f75bd14725cce500974b673 (patch) | |
| tree | 66183e99cd6ccc8bab847faa2642e7b52c92960a /.github/workflows | |
| parent | 678548a2b44601db73cc7d049467abd2b433baae (diff) | |
| download | rneovim-ebb10d624825468c1f75bd14725cce500974b673.tar.gz rneovim-ebb10d624825468c1f75bd14725cce500974b673.tar.bz2 rneovim-ebb10d624825468c1f75bd14725cce500974b673.zip | |
build: remove functionaltest-lua target
It's not needed anymore as it does the exact same thing as
functionaltest. The functionaltest target will test the lua type neovim
was built with, which can be toggled with the PREFER_LUA option.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2790994377..e2027adc32 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -179,16 +179,11 @@ jobs: timeout-minutes: 5 run: cmake --build build --target unittest - - if: matrix.flavor != 'functionaltest-lua' && (success() || failure() && steps.abort_job.outputs.status == 'success') + - if: success() || failure() && steps.abort_job.outputs.status == 'success' name: Functionaltest timeout-minutes: 20 run: cmake --build build --target functionaltest - - if: matrix.flavor == 'functionaltest-lua' && (success() || failure() && steps.abort_job.outputs.status == 'success') - name: Functionaltest with PUC Lua - timeout-minutes: 20 - run: cmake --build build --target functionaltest-lua - - if: matrix.flavor != 'tsan' && (success() || failure() && steps.abort_job.outputs.status == 'success') name: Oldtest run: make oldtest |