File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 61
61
TOOLCHAIN : ${{ matrix.toolchain }}
62
62
steps :
63
63
- 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
-
70
64
- name : Setup Rust toolchain
71
65
run : ./ci/install-rust.sh
72
66
84
78
run : du -sh target | sort -k 2 || true
85
79
86
80
- name : Execute build.sh
87
- run : ./ci/verify-build.sh
81
+ run : |
82
+ set -eux
83
+ # Remove `-Dwarnings` at the MSRV since lints may be different
84
+ [ "${{ matrix.toolchain }}" = "1.63.0" ] && export RUSTFLAGS=""
85
+ ./ci/verify-build.sh
88
86
- name : Target size after job completion
89
87
run : du -sh target | sort -k 2
90
88
You can’t perform that action at this time.
0 commit comments