You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+4-7Lines changed: 4 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ jobs:
20
20
build-stable:
21
21
name: Build Zig Stable
22
22
strategy:
23
+
max-parallel: 1
23
24
matrix:
24
-
max-parallel: 1
25
25
include:
26
26
- os: "ubuntu-latest"
27
27
- os: "windows-latest"
@@ -100,16 +100,14 @@ jobs:
100
100
101
101
build-nightly:
102
102
name: Build Zig Master (Latest Dev)
103
-
needs: build-stable
103
+
runs-on: ${{matrix.os}}
104
104
strategy:
105
105
max-parallel: 1
106
106
matrix:
107
107
include:
108
108
- os: "ubuntu-latest"
109
109
- os: "windows-latest"
110
110
- os: "macos-14"# arm64 as per table: https://github.com/actions/runner-images/blob/8a1eeaf6ac70c66f675a04078d1a7222edd42008/README.md#available-images
111
-
112
-
runs-on: ${{matrix.os}}
113
111
114
112
steps:
115
113
- uses: actions/checkout@v6
@@ -147,15 +145,14 @@ jobs:
147
145
# working-directory: examples/raylib
148
146
build-previous:
149
147
name: Build Zig 0.14.0 (Previous Stable Release)
148
+
runs-on: ${{matrix.os}}
150
149
strategy:
150
+
max-parallel: 1
151
151
matrix:
152
-
max-parallel: 1
153
152
include:
154
153
- os: "ubuntu-latest"
155
154
- os: "windows-latest"
156
155
- os: "macos-14"# arm64 as per table: https://github.com/actions/runner-images/blob/8a1eeaf6ac70c66f675a04078d1a7222edd42008/README.md#available-images
0 commit comments