From 0c8aa7fa8371b0ac958a284bdefb7b62f4df6245 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 3 Jul 2023 18:01:06 -0700 Subject: [PATCH] sysaudio: CI: fix windows build Signed-off-by: Stephen Gutekanst --- libs/sysaudio/.github/workflows/ci.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/libs/sysaudio/.github/workflows/ci.yml b/libs/sysaudio/.github/workflows/ci.yml index 84f9b4da..b6a9ae61 100644 --- a/libs/sysaudio/.github/workflows/ci.yml +++ b/libs/sysaudio/.github/workflows/ci.yml @@ -15,10 +15,7 @@ jobs: sudo apt install xz-utils sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: build - run: | - rm -rf libs/mach-glfw - git clone https://github.com/hexops/mach-glfw libs/mach-glfw - zig build + run: zig build - name: test run: zig build test x86_64-windows: @@ -36,10 +33,7 @@ jobs: 7z x zig.zip Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.11.0-dev.3883+7166407d8\" - name: build - run: | - Remove-Item -Recurse -Force libs/mach-glfw - git clone https://github.com/hexops/mach-glfw libs/mach-glfw - zig build + run: zig build - name: test run: zig build test x86_64-macos: @@ -54,10 +48,7 @@ jobs: brew install xz sudo sh -c 'wget -c https://ziglang.org/builds/zig-macos-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: build - run: | - rm -rf libs/mach-glfw - git clone https://github.com/hexops/mach-glfw libs/mach-glfw - zig build + run: zig build env: AGREE: true - name: test