We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15f03dc commit d75a381Copy full SHA for d75a381
.github/workflows/build-rust-binaries.yaml
@@ -79,4 +79,8 @@ jobs:
79
sudo apt-get install -y musl-tools pkg-config build-essential
80
81
- name: Build Rust Library (Cargo)
82
- run: cargo zigbuild -p yggdrasilffi --release --target ${{ matrix.target }};
+ if: startsWith(matrix.os, 'macos')
83
+ run: cargo build -p yggdrasilffi --release --target ${{ matrix.target }};
84
+ - name: Build Rust Library (ZigBuild)
85
+ if: !(startsWith(matrix.os, 'macos'))
86
+ run: cargo zigbuild -p yggdrasilffi --release --target ${{ matrix.target }};
0 commit comments