gpu-dawn: workaround to fix linux builds

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-07-06 22:17:50 -07:00
parent 3d27836318
commit ac811a7d89

View file

@ -22,7 +22,7 @@ jobs:
- name: Clone mach-glfw
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
- name: install (debug)
run: zig build install -Dtarget=x86_64-linux-gnu
run: zig build install # -Dtarget=x86_64-linux-gnu # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: upload (debug)
run: ./dev/upload-release.sh
env:
@ -45,7 +45,7 @@ jobs:
- name: Clone mach-glfw
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
- name: install (release-fast)
run: zig build install -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu
run: zig build install -Doptimize=ReleaseFast # -Dtarget=x86_64-linux-gnu # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: upload (release-fast)
run: ./dev/upload-release.sh
env: