We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97df563 commit 95538e6Copy full SHA for 95538e6
.github/workflows/build.yml
@@ -40,9 +40,8 @@ jobs:
40
sudo apt-get -y install shellcheck
41
shellcheck ci/ci-tests.sh
42
- name: Set RUSTFLAGS to deny warnings
43
- shell: bash # Default on Winblows is powershell
44
if: "matrix.toolchain == 'stable'"
45
- run: export RUSTFLAGS="-D warnings"
+ run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"
46
- name: Run CI script
47
shell: bash # Default on Winblows is powershell
48
run: CI_MINIMIZE_DISK_USAGE=1 ./ci/ci-tests.sh
ci/ci-tests.sh
@@ -1,6 +1,7 @@
1
#!/bin/bash
2
set -eox pipefail
3
4
+echo "FLAGS: $RUSTFLAGS"
5
RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
6
HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
7
0 commit comments