This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new ce098a49 Try Windows test no override
ce098a49 is described below
commit ce098a49c31f8376b6bc2b5e903d71b9619eccfb
Author: Sebb <[email protected]>
AuthorDate: Wed Nov 8 01:33:42 2023 +0000
Try Windows test no override
---
.github/workflows/maven_adhoc.yml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/.github/workflows/maven_adhoc.yml
b/.github/workflows/maven_adhoc.yml
index d0dfc3d0..1c5f8f10 100644
--- a/.github/workflows/maven_adhoc.yml
+++ b/.github/workflows/maven_adhoc.yml
@@ -78,3 +78,15 @@ jobs:
NAME: "libcrypto-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"
+ - name: JNI test default
+ if: always()
+ run: |
+ mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto"
-D"commons.crypto.debug=true"
+ - name: JNA test default
+ if: always()
+ run: |
+ mvn -q exec:java -D"jna.debug_load=true"
-D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna"
-D"commons.crypto.debug=true"
+ - name: Maven test default
+ if: always()
+ run: |
+ mvn surefire:test -B -V -ntp -D"jna.debug_load=true"
-DtrimStackTrace=false -D"commons.crypto.openssl.check=skip"
-D"commons.crypto.debug=true"