You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2022/06/26 23:12:46 UTC

[commons-crypto] 01/02: Try to avoid output crash

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

commit b74620baa88087511d597a0e440d445ac091417c
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jun 27 00:12:04 2022 +0100

    Try to avoid output crash
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e70f44f..b162b80 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -71,4 +71,5 @@ jobs:
       # "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\opt"
       env:
         OPENSSL_HOME: "C:\\Miniconda\\Library"
-      run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false
+      # Temporarily add  -DargLine="--illegal-access=deny" to avoid native output crash
+      run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false -DargLine="--illegal-access=deny"