diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-31 21:30:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-31 21:30:32 +0200 |
commit | 7d6979608ee83b06ccfab2589da3047b143defae (patch) | |
tree | a0abc8a6e0379d8843562b8d71407d11be5f392e /.github | |
parent | 07e87e9eb5e7195d47d47c0ca752b6c8372a99ea (diff) | |
download | vim-git-7d6979608ee83b06ccfab2589da3047b143defae.tar.gz |
patch 8.2.1555: not all tests are executed on Github Actionsv8.2.1555
Problem: Not all tests are executed on Github Actions.
Solution: Copy "src" to "src2" earlier. Recognize "src2" in a couple more
places. Add two tests to the list of flaky tests. (Ken Takata,
closes #6798)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-windows.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/ci-windows.yaml b/.github/workflows/ci-windows.yaml index d23beef41..0fef20da5 100644 --- a/.github/workflows/ci-windows.yaml +++ b/.github/workflows/ci-windows.yaml @@ -127,6 +127,11 @@ jobs: ) goto :eof + - name: Copy src directory to src2 + shell: cmd + run: | + xcopy src src2\ /E > nul + - name: Build (MSVC) if: matrix.toolchain == 'msvc' shell: cmd @@ -196,10 +201,6 @@ jobs: echo %COL_GREEN%vim version:%COL_RESET% .\vim --version || exit 1 - mkdir ..\src2 - xcopy testdir ..\src2\testdir\ /E > nul || exit 1 - copy evalfunc.c ..\src2 > nul - echo %COL_GREEN%Start testing vim in background.%COL_RESET% start cmd /c "cd ..\src2\testdir & nmake -nologo -f Make_dos.mak VIMPROG=..\..\src\vim > nul & echo done>done.txt" |