Skip to content

Commit

Permalink
Merge pull request #28456 from ProvableHQ/fix/release-ci-linux-musl
Browse files Browse the repository at this point in the history
[Fix] Attempt to override GNU default toolchain
  • Loading branch information
d0cd authored Nov 20, 2024
2 parents 808ad5f + 0c8f304 commit 055e426
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@ jobs:

- name: Build
run: |
docker pull clux/muslrust:stable
docker pull clux/muslrust:x86_64
docker run \
-v ${{ github.workspace }}:/volume \
-v cargo-cache:/root/.cargo/registry \
--rm \
-t clux/muslrust:stable \
-t clux/muslrust:x86_64 \
bash -c "
rustup install stable &&
rustup default stable &&
rustup target add x86_64-unknown-linux-musl &&
rustup override set x86_64-unknown-linux-musl &&
rustup toolchain list &&
cargo build --target x86_64-unknown-linux-musl --package leo-lang --release --features noconfig
"
Expand Down

0 comments on commit 055e426

Please sign in to comment.