File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4646 # Ensure updated '*/Cargo.lock'
4747 # * '*/Cargo.lock' is required to be in a format that `cargo` of MinSRV can interpret (eg, v1-format for MinSRV < v1.38)
4848 for dir in "." "fuzz"; do
49- ( cd "$dir" && (cargo fetch --locked --quiet || cargo +${{ steps.vars.outputs.RUST_MIN_SRV }} update) )
49+ ( cd "$dir" && (cargo fetch --locked --quiet --target $(rustc --print host-tuple) || cargo +${{ steps.vars.outputs.RUST_MIN_SRV }} update) )
5050 done
5151 - name : Info
5252 shell : bash
6565 cargo tree -V
6666 ## dependencies
6767 echo "## dependency list"
68- cargo fetch --locked --quiet
68+ cargo fetch --locked --quiet --target $(rustc --print host-tuple)
6969 ## * using the 'stable' toolchain is necessary to avoid "unexpected '--filter-platform'" errors
7070 RUSTUP_TOOLCHAIN=stable cargo tree --locked --no-dedupe -e=no-dev --prefix=none --features ${{ matrix.job.features }} | grep -vE "$PWD" | sort --unique
7171 - name : Commit any changes (to '${{ env.BRANCH_TARGET }}')
You can’t perform that action at this time.
0 commit comments