diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-24 17:38:06 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:15 +0100 |
commit | 117745d843596eab1ef56e4e15f4df27b4600920 (patch) | |
tree | 9bd0363bdec89aee422038d5a905ab8722442ea9 /.github/workflows/build.yml | |
parent | ed9122dfb44e8af0c10efe0eb0b019e52ed650e0 (diff) |
Build in macOS with OpenSSL 3 too
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5bdabcd..25b98d4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,3 +93,23 @@ jobs: run: make check - name: make distcheck run: make distcheck + macOS-13-openssl-3: + runs-on: macos-13 + steps: + - uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Remove old OpenSSL 1.1 + run: brew uninstall openssl@1.1 + - name: Install dependencies + run: brew install autoconf automake fltk openssl@3 + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure --disable-mbedtls + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck |