From dc9f490e1a0e8f624d533d5d6c33ad1635f1e1bf Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sat, 27 Jan 2024 16:21:25 -0800 Subject: [PATCH] github: Install mbedTLS on darwin. --- .github/workflows/darwin.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index dd578d809..21adf3b35 100644 --- a/.github/workflows/darwin.yml +++ b/.github/workflows/darwin.yml @@ -9,6 +9,9 @@ jobs: - name: Check out code uses: actions/checkout@v1 + - name: Install Mbed TLS + run: brew install mbedtls + - name: Install ninja run: brew install ninja @@ -19,4 +22,4 @@ jobs: run: cd build && ninja - name: Test - run: cd build && ctest --output-on-failure \ No newline at end of file + run: cd build && ctest --output-on-failure