We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89e0ff1 + be84d13 commit 8a39dcfCopy full SHA for 8a39dcf
1 file changed
.github/workflows/ci.yaml
@@ -61,12 +61,6 @@ jobs:
61
TOOLCHAIN: ${{ matrix.toolchain }}
62
steps:
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
- name: Setup Rust toolchain
71
run: ./ci/install-rust.sh
72
@@ -84,7 +78,11 @@ jobs:
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
+ [ "${{ matrix.toolchain }}" = "1.63.0" ] && export RUSTFLAGS=""
+ ./ci/verify-build.sh
88
- name: Target size after job completion
89
run: du -sh target | sort -k 2
90
0 commit comments