diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-01-27 16:21:25 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-01-27 16:55:14 -0800 |
| commit | 348898eaf65f488d0d74fb658a5913c8206294de (patch) | |
| tree | adaa74a6efc7ce8afde1ce15455d1ec61065813e | |
| parent | f48959f1347d97a9bf4d5edb4eb0c46e4101d356 (diff) | |
| download | nng-348898eaf65f488d0d74fb658a5913c8206294de.tar.gz nng-348898eaf65f488d0d74fb658a5913c8206294de.tar.bz2 nng-348898eaf65f488d0d74fb658a5913c8206294de.zip | |
github: Install mbedTLS on darwin.
| -rw-r--r-- | .github/workflows/darwin.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index dd578d80..21adf3b3 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 |
