From bf3d54ac1ea9831141f8c0d21b8f67527d59f07a Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 5 Mar 2022 02:51:07 -0700 Subject: [PATCH] gpu-dawn: CI: correctly clone libs/mach-glfw on Windows Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cda74532..5cb2be377 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,6 +105,8 @@ jobs: cd C:\ 7z x zig.zip Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.10.0-dev.670+e1a535360\" + - name: Clone mach-glfw + run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw - name: install (debug) run: zig build install -Ddawn-from-source=true -Dtarget=x86_64-windows-gnu - name: upload (debug) @@ -130,6 +132,8 @@ jobs: cd C:\ 7z x zig.zip Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.10.0-dev.670+e1a535360\" + - name: Clone mach-glfw + run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw - name: install (release-fast) run: zig build install -Ddawn-from-source=true -Dtarget=x86_64-windows-gnu -Drelease-fast=true - name: upload (release-fast)