File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 6161 TOOLCHAIN : ${{ matrix.toolchain }}
6262 steps :
6363 - uses : actions/checkout@v4
64- # Remove `-Dwarnings` at the MSRV since lints may be different or buffier
65- - name : Update RUSTFLAGS
66- run : |
67- set -eux
68- [ "${{ matrix.toolchain }}" = "1.63.0" ] && echo 'RUSTFLAGS=' >> "$GITHUB_ENV" || true
69-
7064 - name : Setup Rust toolchain
7165 run : ./ci/install-rust.sh
7266
8276 key : ${{ matrix.os }}-${{ matrix.toolchain }}
8377 - name : Target size after restoring cache
8478 run : du -sh target | sort -k 2 || true
85-
8679 - name : Execute build.sh
87- run : ./ci/verify-build.sh
80+ run : |
81+ set -eux
82+ # Remove `-Dwarnings` at the MSRV since lints may be different
83+ [ "${{ matrix.toolchain }}" = "1.63.0" ] && export RUSTFLAGS=""
84+ ./ci/verify-build.sh
8885 - name : Target size after job completion
8986 run : du -sh target | sort -k 2
9087
You can’t perform that action at this time.
0 commit comments