Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoPombal committed Apr 15, 2021
1 parent f83e868 commit 3825e0a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 3825e0a

Please sign in to comment.