Skip to content

Commit 0d97507

Browse files
use lockfile when installing cross
Signed-off-by: Andrew Whitehead <[email protected]>
1 parent 162a1f3 commit 0d97507

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- if: ${{ runner.os == 'Linux' }}
6565
name: Pre-install cross
6666
run: |
67-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
67+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
6868
6969
test-suite:
7070
name: Run Test Suite
@@ -148,7 +148,7 @@ jobs:
148148
- if: ${{ matrix.use_cross }}
149149
name: Build (cross)
150150
run: |
151-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
151+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
152152
cross build --lib --release --target ${{ matrix.target }}
153153
154154
- if: ${{ !matrix.use_cross && matrix.architecture == 'darwin-universal' }}
@@ -379,7 +379,7 @@ jobs:
379379

380380
- name: Build
381381
run: |
382-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
382+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
383383
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
384384
385385
- name: Save library

0 commit comments

Comments
 (0)