From 05ab4fc67df0590d75c5e8b728575f4e4cb3fb23 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:10:00 +0200 Subject: [PATCH] fix missing zlib on macos-13 zlib suddenly is no longer included in the macos 13 github action runner image... Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- .github/workflows/test_nightly_many_os.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_nightly_many_os.yml b/.github/workflows/test_nightly_many_os.yml index 1e679041c2..36f149f140 100644 --- a/.github/workflows/test_nightly_many_os.yml +++ b/.github/workflows/test_nightly_many_os.yml @@ -18,12 +18,15 @@ jobs: with: version: 0.11.0 + - name: Install zlib on macOS-13 + if: matrix.os == 'macos-13' + run: brew install zlib + - name: get the latest release archive for linux (x86_64) if: startsWith(matrix.os, 'ubuntu') run: | curl -fOL https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_x86_64-latest.tar.gz - - name: get the latest release archive for macos (x86_64) if: startsWith(matrix.os, 'macos') run: curl -fOL https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-macos_x86_64-latest.tar.gz