Skip to content

Commit 3dfa96e

Browse files
committed
add windows too
1 parent f07d208 commit 3dfa96e

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

.github/workflows/ci_new_compiler.yml

+27-7
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,34 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
strategy:
2727
matrix:
28-
os: [macos-13, macos-14, ubuntu-24.04, ubuntu-24.04-arm]
28+
os: [macos-13, macos-14, ubuntu-24.04, ubuntu-24.04-arm, windows-2022] # macos-13 uses x64, macos-14 uses arm64
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v4
3232
- uses: goto-bus-stop/setup-zig@v2
3333
with:
3434
version: 0.13.0
35-
35+
3636
- run: zig build
37-
38-
- name: roc executable minimal check
37+
38+
- name: roc executable minimal check (Unix)
39+
if: runner.os != 'Windows'
3940
run: |
4041
./zig-out/bin/roc -h | grep -q "Usage:"
41-
42-
- name: zig tests
42+
43+
- name: roc executable minimal check (Windows)
44+
if: runner.os == 'Windows'
45+
run: |
46+
zig-out\bin\roc.exe -h | findstr "Usage:"
47+
48+
- name: zig tests (Unix)
49+
if: runner.os != 'Windows'
4350
run: ./zig-out/bin/test
44-
51+
52+
- name: zig tests (Windows)
53+
if: runner.os == 'Windows'
54+
run: zig-out\bin\test.exe
55+
4556
- name: check if statically linked (ubuntu)
4657
if: startsWith(matrix.os, 'ubuntu')
4758
run: |
@@ -57,3 +68,12 @@ jobs:
5768
echo "Looks like you added a new dynamic dependency to the Roc executable, we want Roc to be super easy to install, so libSystem should be the only dynamic dependency."
5869
exit 1
5970
fi
71+
72+
- name: check if statically linked (Windows)
73+
if: startsWith(matrix.os, 'windows')
74+
run: |
75+
drmemory.exe -lib_blocklist "*" -- zig-out\bin\roc.exe -h > nul 2>&1
76+
if ($LASTEXITCODE -ne 0) {
77+
echo "Looks like the executable has dynamic dependencies. We want Roc to be super easy to install, so it should be statically linked."
78+
exit 1
79+
}

0 commit comments

Comments
 (0)