2023-10-25 20:51:36 +00:00
|
|
|
name: Shaders
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["*"]
|
|
|
|
tags: [v0.*]
|
|
|
|
pull_request:
|
|
|
|
merge_group:
|
|
|
|
|
2024-01-04 08:41:13 +00:00
|
|
|
env:
|
|
|
|
# Sourced from https://github.com/microsoft/DirectXShaderCompiler/releases
|
2024-01-11 01:57:51 +00:00
|
|
|
#
|
2024-01-04 08:41:13 +00:00
|
|
|
# Must also be changed in ci.yaml
|
|
|
|
DXC_RELEASE: "v1.7.2308"
|
|
|
|
DXC_FILENAME: "dxc_2023_08_14.zip"
|
|
|
|
|
2023-10-25 20:51:36 +00:00
|
|
|
jobs:
|
|
|
|
naga-validate-windows:
|
|
|
|
name: "Validate: HLSL"
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2023-10-26 03:01:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-25 20:51:36 +00:00
|
|
|
|
2024-01-16 16:37:27 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-01-04 08:41:13 +00:00
|
|
|
with:
|
|
|
|
workspaces: |
|
|
|
|
naga/xtask -> naga/xtask/target
|
2023-10-25 20:51:36 +00:00
|
|
|
|
2024-01-04 08:41:13 +00:00
|
|
|
# We must have the FXC job before the DXC job, so the DXC PATH has priority
|
|
|
|
# over the FXC PATH. This is because the windows kits also include an older
|
|
|
|
# version of DXC, which we don't want to use.
|
2023-10-25 20:51:36 +00:00
|
|
|
- name: Setup FXC
|
|
|
|
run: |
|
|
|
|
Get-Childitem -Path "C:\Program Files (x86)\Windows Kits\10\bin\**\x64\fxc.exe" `
|
|
|
|
| Sort-Object -Property LastWriteTime -Descending `
|
|
|
|
| Select-Object -First 1 `
|
|
|
|
| Split-Path -Parent `
|
|
|
|
| Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
|
|
|
|
shell: powershell
|
|
|
|
|
2024-01-04 08:41:13 +00:00
|
|
|
- name: Setup DXC
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
set -e
|
|
|
|
|
|
|
|
curl.exe -L --retry 5 https://github.com/microsoft/DirectXShaderCompiler/releases/download/$DXC_RELEASE/$DXC_FILENAME -o dxc.zip
|
|
|
|
7z.exe e dxc.zip -odxc bin/x64/{dxc.exe,dxcompiler.dll,dxil.dll}
|
2024-01-11 01:57:51 +00:00
|
|
|
|
2024-01-04 08:41:13 +00:00
|
|
|
# We need to use cygpath to convert PWD to a windows path as we're using bash.
|
|
|
|
cygpath --windows "$PWD/dxc" >> "$GITHUB_PATH"
|
|
|
|
|
|
|
|
- name: Validate
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
set -e
|
|
|
|
|
|
|
|
dxc --version
|
2023-10-25 20:51:36 +00:00
|
|
|
|
|
|
|
cd naga
|
|
|
|
cargo xtask validate hlsl dxc
|
|
|
|
cargo xtask validate hlsl fxc
|
2024-01-04 08:41:13 +00:00
|
|
|
|
2023-10-25 20:51:36 +00:00
|
|
|
naga-validate-macos:
|
|
|
|
name: "Validate: MSL"
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
2023-10-26 03:01:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-25 20:51:36 +00:00
|
|
|
|
2024-01-16 16:37:27 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-25 20:51:36 +00:00
|
|
|
with:
|
|
|
|
workspaces: |
|
|
|
|
naga/xtask -> naga/xtask/target
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
cd naga
|
|
|
|
cargo xtask validate msl
|
2024-01-11 01:57:51 +00:00
|
|
|
|
2023-10-25 20:51:36 +00:00
|
|
|
naga-validate-linux:
|
|
|
|
name: "Validate: SPIR-V/GLSL/DOT/WGSL"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-26 03:01:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-25 20:51:36 +00:00
|
|
|
|
|
|
|
- name: Install tools
|
|
|
|
run: sudo apt-get install spirv-tools glslang-tools graphviz
|
|
|
|
|
2024-01-16 16:37:27 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-25 20:51:36 +00:00
|
|
|
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
|