Skip to content

Commit a0d2761

Browse files
committed
Use env node to set RUSTC_BOOTSTRAP
1 parent 029baaa commit a0d2761

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ jobs:
9898

9999
- name: Run analysis-stats on rust std library
100100
if: matrix.os == 'ubuntu-latest'
101-
run: RUSTC_BOOTSTRAP=1 target/${{ matrix.target }}/debug/rust-analyzer analysis-stats --with-deps $(rustc --print sysroot)/lib/rustlib/src/rust/library/std
101+
env:
102+
RUSTC_BOOTSTRAP: 1
103+
run: target/${{ matrix.target }}/debug/rust-analyzer analysis-stats --with-deps $(rustc --print sysroot)/lib/rustlib/src/rust/library/std
102104

103105
# Weird targets to catch non-portable code
104106
rust-cross:

0 commit comments

Comments
 (0)