From 55ef0e26fa9ec1ab160dcb342f46ecf5ec2b853c Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Wed, 3 Dec 2025 20:47:03 +0100 Subject: [PATCH] brew install curl --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 090376726..690cb83df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,10 +112,14 @@ jobs: - name: Get needed vendor libs if: matrix.os == 'ubuntu-24.04-arm' run: sudo apt-get install -y liblua5.4-dev - - name: Install libcurl + - name: Install libcurl (Ubuntu) if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' run: | sudo apt-get install libcurl4-openssl-dev + - name: Install libcurl (macOS) + if: matrix.os == 'macos-15-intel' || matrix.os == 'macos-latest' + run: | + brew install curl - name: Compile needed Vendor run: | make -C vendor/stb/src