-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f83e868
commit 3825e0a
Showing
1 changed file
with
9 additions
and
3 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 |
---|---|---|
|
@@ -26,19 +26,25 @@ jobs: | |
|
||
- name: Windows - setup MSYS2/MinGW | ||
if: matrix.os == 'windows-2019' | ||
uses: msys2/setup-msys2@v1 | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
release: true | ||
msystem: MINGW64 | ||
update: true | ||
install: git mingw64/mingw-w64-x86_64-ninja mingw64/mingw-w64-x86_64-cmake mingw64/mingw-w64-x86_64-headers-git mingw64/mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-openssl | ||
install: >- | ||
git | ||
mingw64/mingw-w64-x86_64-ninja | ||
mingw64/mingw-w64-x86_64-cmake | ||
mingw64/mingw-w64-x86_64-headers-git | ||
mingw64/mingw-w64-x86_64-gcc | ||
mingw64/mingw-w64-x86_64-openssl | ||
# statically link OpenSSL on macOS CI/CD binaries | ||
- name: macOS - setup OpenSSL | ||
if: matrix.os == 'macos-10.15' | ||
run: | | ||
echo "OPENSSL_ROOT_DIR=/usr/local/opt/[email protected]" >> $GITHUB_ENV | ||
echo 'MACOS_STATIC_OPENSSL="-DOPENSSL_USE_STATIC_LIBS=ON"' >> $GITHUB_ENV | ||
echo "MACOS_STATIC_OPENSSL=-DOPENSSL_USE_STATIC_LIBS=ON" >> $GITHUB_ENV | ||
- name: Linux, macOS - build | ||
if: matrix.os != 'windows-2019' | ||
|