Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit aa2f407

Browse files
committed
Use Windows Env vars in CI
1 parent ae4fe1d commit aa2f407

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ jobs:
164164
- name: Test
165165
run: |
166166
# Enable backtraces for easier debugging
167-
export RUST_BACKTRACE=1
167+
$Env:RUST_BACKTRACE=1
168168
169169
# Reduce amount of benchmark runs as they are slow
170-
export COMPILE_RUNS=2
171-
export RUN_RUNS=2
170+
$Env:COMPILE_RUNS=2
171+
$Env:RUN_RUNS=2
172172
173173
# Enable extra checks
174-
export CG_CLIF_ENABLE_VERIFIER=1
174+
$Env:CG_CLIF_ENABLE_VERIFIER=1
175175
176176
./y.exe test
177177

0 commit comments

Comments
 (0)