Skip to content

Commit

Permalink
Fix up overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Nov 6, 2023
1 parent 1d1ac74 commit 687d9eb
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/maven_adhoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,18 @@ jobs:
- name: Build with Maven
env:
OPENSSL_HOME: "C:\\Miniconda\\Library"
LIB: "C:\\Program Files\\OpenSSL\\lib"
NAME: "libcrypto-1_1-x64.dll"
NAME: "crypto-1_1-x64"
run: |
mvn clean test -B -V -ntp -D"jna.debug_load=true" -DtrimStackTrace=false -D"jni.library.name=$env:NAME" -D"jna.library.path=$env:LIB" -D"commons.crypto.openssl.check=skip" -D"commons.crypto.debug=true"
mvn clean test -B -V -ntp -D"jna.debug_load=true" -DtrimStackTrace=false -D"jni.library.name=$env:NAME" -D"commons.crypto.OpenSslJna=$env:NAME" -D"commons.crypto.openssl.check=skip" -D"commons.crypto.debug=true"
- name: JNA test
if: always()
env:
LIB: "C:\\Program Files\\OpenSSL\\lib"
NAME: "crypto-1_1-x64"
run: |
mvn -q exec:java -D"jna.debug_load=true" -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"commons.crypto.debug=true" -D"commons.crypto.OpenSslNativeJna=$env:NAME"
- name: JNI test
if: always()
env:
LIB: "C:\\Program Files\\OpenSSL\\lib"
NAME: "libcrypto-1_1-x64.dll"
NAME: "crypto-1_1-x64"
run: |
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto" -D"commons.crypto.debug=true" -D"jni.library.name=$env:NAME"

0 comments on commit 687d9eb

Please sign in to comment.