From c3b61d46fdb9d3ea900187657de21d2edcaf4abb Mon Sep 17 00:00:00 2001 From: halx99 Date: Mon, 24 May 2021 16:41:39 +0800 Subject: [PATCH] Also build lua-tests on win32 [ci build] --- .github/workflows/win32-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/win32-ci.yml b/.github/workflows/win32-ci.yml index d22eded301..b0739730ab 100644 --- a/.github/workflows/win32-ci.yml +++ b/.github/workflows/win32-ci.yml @@ -35,4 +35,6 @@ jobs: - name: Build shell: cmd # Execute the build. You can specify a specific target with "--target " - run: cmake --build %GITHUB_WORKSPACE%/build_x86 --config %BUILD_TYPE% --target cpp-tests \ No newline at end of file + run: | + cmake --build %GITHUB_WORKSPACE%/build_x86 --config %BUILD_TYPE% --target cpp-tests + cmake --build %GITHUB_WORKSPACE%/build_x86 --config %BUILD_TYPE% --target lua-tests