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 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
82
76
key : ${{ matrix.os }}-${{ matrix.toolchain }}
83
77
- name : Target size after restoring cache
84
78
run : du -sh target | sort -k 2 || true
85
-
86
79
- 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
88
85
- name : Target size after job completion
89
86
run : du -sh target | sort -k 2
90
87
You can’t perform that action at this time.
0 commit comments