diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:52:48 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-03 20:52:48 +0100 |
| commit | e9d8f90216d97f17acab8bd5e1dfdd8fbe8c3868 (patch) | |
| tree | 6ca43ef0d0988e019615419beebc1869980a0869 | |
| parent | 55ef0e26fa9ec1ab160dcb342f46ecf5ec2b853c (diff) | |
Add mbedtls dependecy for vendor tests
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 690cb83df..dc5e4f592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,11 +115,11 @@ jobs: - name: Install libcurl (Ubuntu) if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' run: | - sudo apt-get install libcurl4-openssl-dev + sudo apt-get install libcurl4-openssl-dev libmbedtls-dev - name: Install libcurl (macOS) if: matrix.os == 'macos-15-intel' || matrix.os == 'macos-latest' run: | - brew install curl + brew install curl mbedtls - name: Compile needed Vendor run: | make -C vendor/stb/src @@ -288,7 +288,7 @@ jobs: - name: Install libcurl run: | - sudo apt-get install libcurl4-openssl-dev + sudo apt-get install libcurl4-openssl-dev libmbedtls-dev - name: Build Odin run: ./build_odin.sh release |