Skip to content

Commit 0cf345f

Browse files
prepare to fix windows build
1 parent d1af585 commit 0cf345f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/libc-overlay-tests.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,16 @@ jobs:
6060
-S ${{ github.workspace }}/runtimes
6161
6262
- name: Build
63-
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --parallel --config RelWithDebInfo
63+
run: >
64+
cmake
65+
--build ${{ steps.strings.outputs.build-output-dir }}
66+
--parallel
67+
--config RelWithDebInfo
68+
--target libc
6469
6570
- name: Test
66-
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --target check-libc
71+
run: >
72+
cmake
73+
--build ${{ steps.strings.outputs.build-output-dir }}
74+
--parallel
75+
--target check-libc

0 commit comments

Comments
 (0)