Integration of Naga into Repo #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: naga-validation-linux | |
on: | |
push: | |
branches: ["*"] | |
tags: [v0.*] | |
pull_request: | |
merge_group: | |
jobs: | |
validate-linux: | |
name: Validate Naga SPIR-V + GLSL Output | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install tools | |
run: sudo apt-get install spirv-tools glslang-tools graphviz | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
naga/xtask -> naga/xtask/target | |
- run: cd naga; cargo xtask validate spv | |
- run: cd naga; cargo xtask validate glsl | |
- run: cd naga; cargo xtask validate dot | |
- run: cd naga; cargo xtask validate wgsl |