Skip to content

Commit ec94b74

Browse files
committed
Update CI
1 parent 91f8615 commit ec94b74

9 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
ZIG_VERSION: 0.15.1
10+
ZIG_VERSION: master
1111

1212
jobs:
1313
formatting-check:
@@ -170,7 +170,8 @@ jobs:
170170
strategy:
171171
matrix:
172172
os: [ubuntu-latest, windows-latest, macos-latest]
173-
port_dir: [gigadevice/gd32, raspberrypi/rp2xxx, stmicro/stm32, wch/ch32v]
173+
port_dir:
174+
[gigadevice/gd32, raspberrypi/rp2xxx, stmicro/stm32, wch/ch32v]
174175
steps:
175176
- name: Checkout
176177
uses: actions/checkout@v4
@@ -188,7 +189,8 @@ jobs:
188189
runs-on: ubuntu-latest
189190
strategy:
190191
matrix:
191-
example_dir: [
192+
example_dir:
193+
[
192194
espressif/esp,
193195
gigadevice/gd32,
194196
microchip/atmega,
@@ -245,7 +247,7 @@ jobs:
245247
- name: Setup Zig
246248
uses: mlugg/setup-zig@v2
247249
with:
248-
version: 0.15.1
250+
version: master
249251
- name: Build Website
250252
run: zig build
251253
working-directory: website

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Zig
2424
uses: mlugg/setup-zig@v2
2525
with:
26-
version: 0.15.1
26+
version: master
2727

2828
- name: Extract version
2929
run: echo "MICROZIG_VERSION=$(zig build package -- get-version)" >> $GITHUB_ENV

.github/workflows/drivers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Zig
2121
uses: mlugg/setup-zig@v2
2222
with:
23-
version: 0.15.1
23+
version: master
2424

2525
- name: Run Test Suite
2626
working-directory: drivers

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Zig
2424
uses: mlugg/setup-zig@v2
2525
with:
26-
version: 0.15.1
26+
version: master
2727

2828
# Build linter from trusted base branch code
2929
- name: Build linter

.github/workflows/publish-github-pages.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Zig
1818
uses: mlugg/setup-zig@v2
1919
with:
20-
version: 0.15.1
20+
version: master
2121

2222
- name: Download and install GitHub CLI
2323
run: |
@@ -65,8 +65,6 @@ jobs:
6565
echo "Generating metadata.json"
6666
echo "{ \"releases\": [$(IFS=,; echo "${releases_with_artifact[*]}")] }" > website/zig-out/downloads/microzig/metadata.json
6767
68-
69-
7068
- name: List Contents
7169
run: tree zig-out
7270
working-directory: website

.github/workflows/sim-aviron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Zig
2020
uses: mlugg/setup-zig@v2
2121
with:
22-
version: 0.15.1
22+
version: master
2323

2424
- name: Build
2525
working-directory: sim/aviron

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
## What version of Zig to use
66

7-
Zig 0.15.1
7+
Zig master
88

99
## Getting Started With MicroZig
1010

website/content/docs/getting-started.smd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ used for the [2024 SYCL](https://sycl.it)
2222

2323
## Let's Begin
2424

25-
Quickly check that you have Zig `0.15.1` installed by running `zig version`.
25+
Quickly check that you have Zig `master` installed by running `zig version`.
2626

2727
Assuming you've initialized a zig project with `zig init`, or have set one up
2828
yourself, you can add microzig as a dependency with the following command:
@@ -114,4 +114,4 @@ Copy the uf2 file into the mounted drive. Execution should take place immediatel
114114

115115
## Further Resources
116116

117-
- [Zig Language Reference](https://ziglang.org/documentation/0.15.1/)
117+
- [Zig Language Reference](https://ziglang.org/documentation/master/)

website/content/index.smd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Zig is an excellent programming language for embedded systems.
2828
explicit and even verbose at times. Nullable pointers, pointer casting,
2929
integer conversions, etc.
3030

31-
To learn more: [The Zig Language Reference](https://ziglang.org/documentation/0.15.1/)
31+
To learn more: [The Zig Language Reference](https://ziglang.org/documentation/master/)
3232

3333
## Why MicroZig?
3434

0 commit comments

Comments
 (0)