Skip to content

Commit

Permalink
GHA: Run tests in parallel
Browse files Browse the repository at this point in the history
Run gvim tests and vim tests in parallel.
  • Loading branch information
k-takata committed Jul 31, 2020
1 parent 4d4d1cd commit 6cf3f1f
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions .github/workflows/ci-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,16 +195,25 @@ jobs:
echo.
echo %COL_GREEN%vim version:%COL_RESET%
.\vim --version || exit 1
cd testdir
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"
echo %COL_GREEN%Test gvim:%COL_RESET%
cd testdir
nmake -nologo -f Make_dos.mak VIMPROG=..\gvim || exit 1
nmake -nologo -f Make_dos.mak clean
echo %COL_GREEN%Test vim:%COL_RESET%
if "${{ matrix.toolchain }}-${{ matrix.arch }}"=="msvc-x64" (
rem This test may hang up unless it is executed in a separate console.
start /wait cmd /c "nmake -nologo -f Make_dos.mak VIMPROG=..\vim > nul"
if exist messages type messages
nmake -nologo -f Make_dos.mak report || exit 1
) else (
nmake -nologo -f Make_dos.mak VIMPROG=..\vim || exit 1
)
cd ..
echo %COL_GREEN%Wait testing vim.%COL_RESET%
cd ..\src2\testdir
:waitloop
ping -n 2 localhost > nul
if not exist done.txt goto waitloop
echo %COL_GREEN%Test results of vim:%COL_RESET%
if exist messages type messages
nmake -nologo -f Make_dos.mak report VIMPROG=..\..\src\vim || exit 1

0 comments on commit 6cf3f1f

Please sign in to comment.