We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe97a5 commit b80e93aCopy full SHA for b80e93a
.github/workflows/rust.yml
@@ -147,13 +147,13 @@ jobs:
147
~/.cargo/git
148
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
149
150
+ - name: Set Windows PATH
151
+ if: runner.os == 'Windows'
152
+ run: echo "$env:USERPROFILE\.cargo\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
153
+
154
- name: Compile shaders to SPIR-V
155
working-directory: shaders/rust
- run: |
- if [ "${{ runner.os }}" == "Windows" ]; then
- export PATH="$HOME/.cargo/bin:$PATH"
- fi
156
- python3 compileshaders.py
+ run: python3 compileshaders.py
157
158
- name: Verify no uncommitted changes
159
shell: bash
0 commit comments