We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4f7d5 commit 0c99b4eCopy full SHA for 0c99b4e
.github/workflows/build.yml
@@ -42,6 +42,11 @@ jobs:
42
- uses: DeterminateSystems/magic-nix-cache-action@main
43
- name: Run all CI tasks
44
run: |
45
+ # Prepend dummy rustup to PATH to prevent it from being used
46
+ export PATH="$(pwd)/no-rustup:$PATH"
47
+ mkdir -p no-rustup
48
+ echo -e '#!/bin/sh\nexec false' > no-rustup/rustup
49
+ chmod +x no-rustup/rustup
50
nix develop '.?submodules=1' --override-input linera-protocol ./linera-protocol --command pnpm run ci
51
- name: Upload built extension
52
uses: actions/upload-artifact@v4
0 commit comments