From 128c0cba76ec599330aeb95df67069b544f22f41 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 31 Aug 2021 20:32:55 +0200 Subject: [PATCH] Add CI builds on MacOS 11 (BigSur) --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c58827f..64e0458 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,13 @@ jobs: - run: .github/before_script.sh - run: .github/script.sh + macos-openssl-stable: + runs-on: macos-11 + steps: + - uses: actions/checkout@v2 + - run: .github/before_script.sh + - run: .github/script.sh + gcc-openssl-master: runs-on: ubuntu-20.04 env: @@ -30,6 +37,15 @@ jobs: - run: .github/before_script.sh - run: .github/script.sh + macos-openssl-master: + runs-on: macos-11 + env: + OPENSSL_BRANCH: master + steps: + - uses: actions/checkout@v2 + - run: .github/before_script.sh + - run: .github/script.sh + gcc-asan-openssl-master: runs-on: ubuntu-20.04 env: -- 2.39.2