Skip to content

Commit cbe97a5

Browse files
committed
windows?
1 parent e8f1d61 commit cbe97a5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,11 @@ jobs:
149149

150150
- name: Compile shaders to SPIR-V
151151
working-directory: shaders/rust
152-
run: python3 compileshaders.py
152+
run: |
153+
if [ "${{ runner.os }}" == "Windows" ]; then
154+
export PATH="$HOME/.cargo/bin:$PATH"
155+
fi
156+
python3 compileshaders.py
153157
154158
- name: Verify no uncommitted changes
155159
shell: bash

0 commit comments

Comments
 (0)