We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5759000 commit c1ba4e9Copy full SHA for c1ba4e9
.github/workflows/build.yaml
@@ -142,7 +142,11 @@ jobs:
142
uses: actions/checkout@v4
143
- name: Install cargo-zigbuild
144
if: matrix.build == 'zigbuild'
145
- run: pip install ziglang==0.13.0 cargo-zigbuild==0.19.1
+ run: |
146
+ python3 -m venv .venv
147
+ . .venv/bin/activate
148
+ echo PATH=$PATH >> $GITHUB_ENV
149
+ pip install ziglang==0.13.0 cargo-zigbuild==0.19.1
150
- name: Setup Rust toolchain
151
uses: dtolnay/rust-toolchain@stable
152
with:
0 commit comments