-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
macOS-12 has been deprecated by GHA
- Loading branch information
Showing
1 changed file
with
9 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ jobs: | |
}, | ||
{ | ||
"name": "macOS", | ||
"runner": "macos-12" | ||
"runner": "macos-13" | ||
}, | ||
{ | ||
"name": "macOS (M1)", | ||
|
@@ -221,9 +221,14 @@ jobs: | |
run: | | ||
brew update | ||
- name: Add Homebrew libraries to search path (macOS M1) | ||
if: runner.os == 'macOS' && runner.arch == 'ARM64' | ||
run: echo "DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib" >> "$GITHUB_ENV" | ||
# Downgrade to OpenSSL 3.0 | ||
brew unlink openssl | ||
brew install [email protected] | ||
brew link --overwrite [email protected] | ||
- name: Add Homebrew libraries to search path | ||
if: runner.os == 'macOS' | ||
run: echo "DYLD_FALLBACK_LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV" | ||
|
||
- name: Install MinGW (Windows) | ||
if: runner.os == 'Windows' | ||
|