Skip to content

Commit

Permalink
github runners: separate shader validation steps
Browse files Browse the repository at this point in the history
  • Loading branch information
schell committed Aug 22, 2024
1 parent 9558807 commit dfbd0dd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
workspaces: shaders
- run: |
# ensure the shader binaries were properly checked in
rm -rf crates/renderling/src/linkage/*.spv
cd shaders && cargo run --release && cd ..
git diff --exit-code --no-ext-diff crates/renderling/src/linkage
# ensure the shader binaries were properly checked in
- run: rm -rf crates/renderling/src/linkage/*.spv
- run: cd shaders && cargo run --release && cd ..
- run: git diff --exit-code --no-ext-diff crates/renderling/src/linkage

renderling-clippy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit dfbd0dd

Please sign in to comment.