diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:47:03 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:47:03 +0100 |
| commit | 55ef0e26fa9ec1ab160dcb342f46ecf5ec2b853c (patch) | |
| tree | 989437b9e95f82618a6f720a1999a55c93e0ed7f | |
| parent | 0bf1ca0435136d274bbf086dba93facd5f43578e (diff) | |
brew install curl
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
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 |