Skip to content

Commit

Permalink
WIP Debug 9
Browse files Browse the repository at this point in the history
  • Loading branch information
chris2511 committed Mar 8, 2024
1 parent 9098271 commit f367514
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,31 +70,25 @@ jobs:
set-env: true
no-qt-binaries: true

- name: Install MSYS2 on Windows
uses: msys2/setup-msys2@v2
if: matrix.os == 'windows'
with:
location: ${{env.MSYS}}
msystem: mingw64
install: curl perl make
# - name: Install MSYS2 on Windows
# uses: msys2/setup-msys2@v2
# if: matrix.os == 'windows'
# with:
# location: ${{env.MSYS}}
# msystem: mingw64
# install: curl perl make

- name: Brew install OpenSSL
if: matrix.os == 'macos'
run: brew install openssl

- name: Build OpenSSL for Windows
- name: Install OpenSSL for Windows
if: matrix.os == 'windows'
shell: msys2 {0}
run: |
set -x
set
echo $PATH
echo $PATH | tr ':' '\n'
curl -O https://www.openssl.org/source/${{env.OPENSSL}}.tar.gz
tar zxf ${{env.OPENSSL}}.tar.gz
cd ${{env.OPENSSL}}
./Configure mingw64 --prefix=`pwd`/../install --libdir=lib
make -j4 && make install_sw
Get-ChildItem env:
pwd
iwr -URI https://slproweb.com/download/Win64OpenSSL-3_2_1.msi -o openssl.msi
msiexec.exe /norestart /qn /quiet /i openssl.msi
- name: Checkout XCA
uses: actions/checkout@v4
Expand Down

0 comments on commit f367514

Please sign in to comment.