-
Notifications
You must be signed in to change notification settings - Fork 16
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
1e661d8
commit 4e5e871
Showing
1 changed file
with
9 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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] | ||
|