We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89b39a4 commit 88f3a70Copy full SHA for 88f3a70
.github/workflows/release.yml
@@ -29,6 +29,9 @@ jobs:
29
toolchain: stable
30
components: rustfmt, clippy
31
32
+ - name: Setup Zig
33
+ uses: mlugg/setup-zig@v1
34
+
35
- name: Install Dependencies
36
run: cargo fetch --locked
37
Makefile
@@ -8,9 +8,12 @@ setup:
8
rustup target add $$target; \
9
done
10
11
12
# Build the binary for all targets
13
.PHONY: build
14
build: setup
15
+ cargo install cargo-binstall
16
+ cargo binstall cargo-lambda --no-confirm
17
@for target in $(TARGETS); do \
18
cargo lambda build --release --extension --target $$target; \
19
0 commit comments