diff options
Diffstat (limited to '.github/workflows')
-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 |