-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Take lib from openssl version -a ENGINESDIR
- Loading branch information
Showing
1 changed file
with
8 additions
and
9 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 |
---|---|---|
|
@@ -81,16 +81,15 @@ jobs: | |
run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false | ||
- name: Run Crypto (JNI) | ||
run: | | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto" | ||
- name: Run OpenSslJna (JNA - macOS) | ||
if: ${{ matrix.os == 'macos-11' }} | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto" -D"commons.crypto.debug=true" | ||
- name: Run OpenSslJna (JNA - don't override lib) | ||
run: | | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"jna.library.path=/usr/local/miniconda/lib" | ||
- name: Run OpenSslJna (JNA - Ubuntu) | ||
if: ${{ matrix.os == 'ubuntu-20.04' }} | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"commons.crypto.debug=true" | ||
- name: Run OpenSslJna (JNA - macOS from openssl version -a ENGINESDIR) | ||
if: ${{ matrix.os == 'macos-11' }} | ||
run: | | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" | ||
- name: Run OpenSslJna (JNA - Windows) | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"jna.library.path=/usr/local/Cellar/[email protected]/1.1.1v/lib" -D"commons.crypto.debug=true" | ||
- name: Run OpenSslJna (JNA - Windows from openssl version -a ENGINESDIR) | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
run: | | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"jna.library.path=C:\Miniconda\Library\bin" | ||
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"jna.library.path="C:\Program Files\OpenSSL\lib" -D"commons.crypto.debug=true" |