Skip to content

Commit

Permalink
Merge pull request #675 from chewing/ci-install-rust
Browse files Browse the repository at this point in the history
ci: explicitly install target rust version
  • Loading branch information
kanru authored Mar 6, 2025
2 parents 33c4144 + 875d5ab commit efd67a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
- name: Setup rustup
run: |
rustup install ${{ env.RUST_VERSION }}
rustup default ${{ env.RUST_VERSION }}
rustup update
- name: Build
run: |
Expand All @@ -68,9 +68,9 @@ jobs:
- uses: actions/checkout@v4
- name: Setup rustup
run: |
rustup install ${{ env.RUST_VERSION }}
rustup default ${{ env.RUST_VERSION }}
rustup target add aarch64-unknown-linux-gnu
rustup update
- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ if(NOT Corrosion_FOUND)
FetchContent_Declare(
Corrosion
GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
GIT_TAG 64289b1d79d6d19cd2e241db515381a086bb8407 # v0.5
GIT_TAG b1fab721655c5c4b1b08a083d3cd29f163af75d0 # v0.5.1
FIND_PACKAGE_ARGS
)
FetchContent_MakeAvailable(Corrosion)
Expand Down

0 comments on commit efd67a6

Please sign in to comment.