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 569c6259 Allow JNA no-override to fail
569c6259 is described below
commit 569c62593a1c72114125ce306cf6ff7f8383437b
Author: Sebb <[email protected]>
AuthorDate: Wed Nov 1 17:59:08 2023 +0000
Allow JNA no-override to fail
---
.github/workflows/maven.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index bdd48d8d..7bdb4902 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -117,8 +117,10 @@ jobs:
run: |
mvn --show-version --batch-mode --no-transfer-progress -q exec:java
-D"exec.mainClass=org.apache.commons.crypto.Crypto"
-D"commons.crypto.debug=true" -D"jni.library.path=$ENGINESDIR"
- name: Run OpenSslJna (JNA - don't override lib)
+ shell: bash
+ # This is likely to fail, so reset the status
run: |
- mvn --show-version --batch-mode --no-transfer-progress -q exec:java
-D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna"
-D"commons.crypto.debug=true"
+ mvn --show-version --batch-mode --no-transfer-progress -q exec:java
-D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna"
-D"commons.crypto.debug=true" || true
- name: Run OpenSslJna (JNA - macOS from openssl version -a ENGINESDIR)
if: ${{ matrix.os == 'macos-11' }}
run: |