Skip to content

Commit

Permalink
install openssl in separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Aug 8, 2024
1 parent 1e661d8 commit 4e5e871
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ jobs:
run: |
cd openssl-${{ env.OPENSSL_VERSION }}
nmake
- name: install openssl 64
run: |
cd openssl-${{ env.OPENSSL_VERSION }}
mkdir c:\OTHERBIN\openssl64
nmake install
Expand All @@ -163,9 +167,13 @@ jobs:
run: |
cd openssl-${{ env.OPENSSL_VERSION }}
nmake
- name: install openssl 32
run: |
cd openssl-${{ env.OPENSSL_VERSION }}
mkdir c:\OTHERBIN\openssl32
nmake install
- name: Download pkgconfiglite for Compile using msvc and meson
if: ${{steps.cachePkgConfigLiteZip.outputs.cache-hit != 'true' && steps.cachePostgres.outputs.cache-hit != 'true'}}
uses: suisei-cn/[email protected]
Expand Down

0 comments on commit 4e5e871

Please sign in to comment.