Skip to content

Commit 231bcb7

Browse files
committed
wgsl ci: add experimental wgsl compiletest to ci
1 parent 0ca7c46 commit 231bcb7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,14 @@ jobs:
128128
fail-fast: false
129129
matrix:
130130
os: [ ubuntu-24.04, windows-2022, macOS-latest ]
131+
target_env: [ "vulkan1.1,vulkan1.2,vulkan1.3,vulkan1.4,spv1.3,spv1.4" ]
132+
experimental: [ false ]
133+
include:
134+
- os: ubuntu-24.04
135+
target_env: naga-wgsl
136+
experimental: true
131137
runs-on: ${{ matrix.os }}
138+
continue-on-error: ${{ matrix.experimental }}
132139
steps:
133140
- uses: actions/checkout@v4
134141
- name: Install Vulkan SDK
@@ -143,7 +150,7 @@ jobs:
143150
- name: cargo fetch --locked
144151
run: cargo fetch --locked --target $TARGET
145152
- name: compiletest
146-
run: cargo run -p compiletests --release --no-default-features --features "use-installed-tools" -- --target-env vulkan1.1,vulkan1.2,vulkan1.3,vulkan1.4,spv1.3,spv1.4
153+
run: cargo run -p compiletests --release --no-default-features --features "use-installed-tools" -- --target-env ${{ matrix.target_env }}
147154

148155
difftest:
149156
name: Difftest

0 commit comments

Comments
 (0)