Skip to content

Commit 0209a20

Browse files
committed
wgsl ci: add experimental wgsl compiletest to ci
1 parent 9612111 commit 0209a20

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
@@ -130,7 +130,14 @@ jobs:
130130
fail-fast: false
131131
matrix:
132132
os: [ ubuntu-latest, windows-latest, macOS-latest ]
133+
target_env: [ "vulkan1.1,vulkan1.2,vulkan1.3,vulkan1.4,spv1.3,spv1.4" ]
134+
experimental: [ false ]
135+
include:
136+
- os: ubuntu-24.04
137+
target_env: naga-wgsl
138+
experimental: true
133139
runs-on: ${{ matrix.os }}
140+
continue-on-error: ${{ matrix.experimental }}
134141
steps:
135142
- uses: actions/checkout@v4
136143
- name: Install Vulkan SDK
@@ -145,7 +152,7 @@ jobs:
145152
- name: cargo fetch --locked
146153
run: cargo fetch --locked --target $TARGET
147154
- name: compiletest
148-
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
155+
run: cargo run -p compiletests --release --no-default-features --features "use-installed-tools" -- --target-env ${{ matrix.target_env }}
149156

150157
difftest:
151158
name: Difftest

0 commit comments

Comments
 (0)