diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:27:08 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:27:08 +0100 |
| commit | 215a96d550f0e77b0c46a62e44aa91b62e351568 (patch) | |
| tree | 71451e17f761ceab411c18f22cbc9a6bf84ee21f /.github | |
| parent | 80b79693511f410ced95f96990517a48e65940da (diff) | |
Fix CI?
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8685782a..6c6a59422 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,6 +112,9 @@ 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 + run: | + sudo apt-get install libcurl4-openssl-dev - name: Compile needed Vendor run: | make -C vendor/stb/src @@ -280,7 +283,7 @@ jobs: - name: Install libcurl run: | - sudo apt-get install libcurl4-openssl-dev + sudo apt-get install libcurl4-openssl-dev - name: Build Odin run: ./build_odin.sh release |