Skip to content

Commit a8a44d3

Browse files
committed
skip float16 targets in CI
1 parent 3924552 commit a8a44d3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install -y libxrandr-dev
3131
3232
- name: Build
33-
run: make all
33+
run: make all-portable
3434

3535
- name: Run hello world
3636
run: make

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,15 @@ all: dawnlib check-clang check-linux-vulkan lib pch
6969
cd examples/shadertui && make build/shadertui
7070
cd examples/transpose && make build/transpose
7171

72+
all-portable: dawnlib check-clang check-linux-vulkan lib pch
73+
cd examples/gpu_puzzles && make build/gpu_puzzles
74+
cd examples/hello_world && make build/hello_world
75+
cd examples/matmul && export MATMUL_VERSION=9 && make build/matmul
76+
cd examples/physics && make build/physics
77+
cd examples/render && make build/render
78+
cd examples/shadertui && make build/shadertui
79+
cd examples/transpose && make build/transpose
80+
7281
# Test 16-bit floating point type
7382
test-half: dawnlib check-clang
7483
$(LIBSPEC) && clang++ -std=c++17 $(INCLUDES) numeric_types/half.cpp -L$(LIBDIR) -lwebgpu_dawn -ldl -o build/half && ./build/half

0 commit comments

Comments
 (0)