Skip to content

Commit dea5be7

Browse files
committed
does this work?
1 parent efb3c69 commit dea5be7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,35 @@ jobs:
4141
aarch64-apple-darwin \
4242
x86_64-apple-darwin \
4343
x86_64-pc-windows-gnu
44+
env:
45+
SCCACHE_GHA_ENABLED: "true"
46+
RUSTC_WRAPPER: "sccache"
47+
4448
- name: Install cargo zigbuild
4549
run: cargo install --locked cargo-zigbuild
50+
env:
51+
SCCACHE_GHA_ENABLED: "true"
52+
RUSTC_WRAPPER: "sccache"
4653
- name: macOS - build universal2
4754
run: cargo zigbuild --target universal2-apple-darwin --release
55+
env:
56+
SCCACHE_GHA_ENABLED: "true"
57+
RUSTC_WRAPPER: "sccache"
4858
- name: Linux - build x86_64 musl
4959
run: cargo zigbuild --target x86_64-unknown-linux-musl --release
60+
env:
61+
SCCACHE_GHA_ENABLED: "true"
62+
RUSTC_WRAPPER: "sccache"
5063
- name: Linux - build aarch64 musl
5164
run: cargo zigbuild --target aarch64-unknown-linux-musl --release
65+
env:
66+
SCCACHE_GHA_ENABLED: "true"
67+
RUSTC_WRAPPER: "sccache"
5268
- name: Windows - build x86_64 musl
5369
run: cargo zigbuild --target x86_64-pc-windows-gnu --release
70+
env:
71+
SCCACHE_GHA_ENABLED: "true"
72+
RUSTC_WRAPPER: "sccache"
5473
- name: Move / Rename Artifacts
5574
run: |
5675
mv target/x86_64-unknown-linux-musl/release/rewatch ./rewatch-linux

0 commit comments

Comments
 (0)