-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
using macos-12 for [email protected] runs
- Loading branch information
1 parent
2f0f2be
commit 05ab967
Showing
1 changed file
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ jobs: | |
build-macos: | ||
strategy: | ||
matrix: | ||
openssl: ["1.1", "3.0"] | ||
openssl: ["3.0"] | ||
runs-on: macos-latest | ||
continue-on-error: true | ||
steps: | ||
|
@@ -114,6 +114,25 @@ jobs: | |
- name: Build | ||
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@${{ matrix.openssl }}`/lib/pkgconfig ./configure && make | ||
|
||
# According to https://github.com/actions/runner-images/blob/macos-14-arm64/20241119.509/images/macos/macos-14-arm64-Readme.md | ||
# [macOS] OpenSSL 1.1 will be removed and OpenSSL 3 will be the default for all macOS images from November 4, 2024 | ||
# so use macos-12 which does not have the deprecation notice | ||
build-macos-openssl-1-1: | ||
strategy: | ||
matrix: | ||
platform: [macos-12] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install dependencies | ||
run: | | ||
brew install autoconf automake libtool libevent pkg-config | ||
- name: Install openssl v1.0.2 | ||
run: brew install rbenv/tap/[email protected] | ||
- name: Build | ||
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix [email protected]`/lib/pkgconfig ./configure && make | ||
|
||
|
||
build-macos-openssl-1-0-2: | ||
strategy: | ||
matrix: | ||
|