Skip to content

Commit 95538e6

Browse files
committed
f
1 parent 97df563 commit 95538e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ jobs:
4040
sudo apt-get -y install shellcheck
4141
shellcheck ci/ci-tests.sh
4242
- name: Set RUSTFLAGS to deny warnings
43-
shell: bash # Default on Winblows is powershell
4443
if: "matrix.toolchain == 'stable'"
45-
run: export RUSTFLAGS="-D warnings"
44+
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"
4645
- name: Run CI script
4746
shell: bash # Default on Winblows is powershell
4847
run: CI_MINIMIZE_DISK_USAGE=1 ./ci/ci-tests.sh

ci/ci-tests.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -eox pipefail
33

4+
echo "FLAGS: $RUSTFLAGS"
45
RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
56
HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
67

0 commit comments

Comments
 (0)