Skip to content

Commit 06980f7

Browse files
committed
print libc on windows one more time
1 parent 2172f1d commit 06980f7

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-latest, macos-latest, windows-latest]
19+
os: [windows-latest]
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- uses: actions/checkout@v3
@@ -26,8 +26,8 @@ jobs:
2626
with:
2727
version: master
2828

29-
- name: Build
30-
run: zig build
29+
# - name: Build
30+
# run: zig build
3131

3232
# - name: Build 32-bit
3333
# run: zig build -Dtarget=arm-linux
@@ -36,8 +36,10 @@ jobs:
3636
# - name: Build release
3737
# run: zig build --release=safe
3838

39-
- name: Run Tests
40-
run: zig build test -Dskip-release
39+
# - name: Run Tests
40+
# run: zig build test -Dskip-release
4141

4242
- name: Print libc
43-
run: zig libc
43+
run: |
44+
zig env
45+
zig libc

0 commit comments

Comments
 (0)