@@ -25,23 +25,34 @@ jobs:
25
25
runs-on : ${{ matrix.os }}
26
26
strategy :
27
27
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
29
29
steps :
30
30
- name : Checkout
31
31
uses : actions/checkout@v4
32
32
- uses : goto-bus-stop/setup-zig@v2
33
33
with :
34
34
version : 0.13.0
35
-
35
+
36
36
- run : zig build
37
-
38
- - name : roc executable minimal check
37
+
38
+ - name : roc executable minimal check (Unix)
39
+ if : runner.os != 'Windows'
39
40
run : |
40
41
./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'
43
50
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
+
45
56
- name : check if statically linked (ubuntu)
46
57
if : startsWith(matrix.os, 'ubuntu')
47
58
run : |
57
68
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."
58
69
exit 1
59
70
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