Skip to content

Commit

Permalink
fix toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex6323 committed Nov 12, 2024
1 parent 2df29ea commit 5836bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo_llvm_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install llvm-tools
run: |
# TOOLCHAIN=$(rustup show active-toolchain | cut -d ' ' -f 1)
TOOLCHAIN=nightly
TOOLCHAIN=nightly-x86_64-unknown-linux-gnu
rustup component add llvm-tools --toolchain "$TOOLCHAIN"
LLVM_PROFDATA=$HOME/.rustup/toolchains/$TOOLCHAIN/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-profdata
echo "LLVM_PROFDATA=$LLVM_PROFDATA" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion scripts/simtest/simtest-cov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ root_dir=$(git rev-parse --show-toplevel)
export SIMTEST_STATIC_INIT_MOVE=$root_dir"/examples/move/basics"

#TOOLCHAIN=$(rustup show active-toolchain | cut -d ' ' -f 1)
TOOLCHAIN=nightly
TOOLCHAIN=nightly-x86_64-unknown-linux-gnu
LLVM_PROFDATA="$HOME/.rustup/toolchains/$TOOLCHAIN/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-profdata"

echo "Computing simtest code coverage."
Expand Down

0 comments on commit 5836bda

Please sign in to comment.