From 8fa51356757833907a6837c1cd21e8ba60c7f7ba Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 3 Jul 2023 23:01:22 -0700 Subject: [PATCH] CI: clone with submodules; remove libasound Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7c910bf..5e8eebe0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + submodules: 'true' - name: Setup Zig run: | - sudo apt install xz-utils libasound2-dev + 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: x86_64-linux -> x86_64-linux-musl # if: matrix.project == 'libs/freetype' || matrix.project == 'libs/glfw' @@ -52,6 +54,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + submodules: 'true' - name: Setup Zig run: | $ProgressPreference = 'SilentlyContinue' @@ -69,6 +73,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + submodules: 'true' - name: Setup Zig run: | brew uninstall --ignore-dependencies libx11 # https://github.com/ziglang/zig/issues/11066