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 85c7c5f4 replace appears to be case insensitive [skip ci] 85c7c5f4 is described below commit 85c7c5f468e53964231b91ae54623e07120a95b3 Author: Sebb <s...@apache.org> AuthorDate: Tue Oct 31 23:23:24 2023 +0000 replace appears to be case insensitive [skip ci] --- .github/workflows/maven_adhoc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven_adhoc.yml b/.github/workflows/maven_adhoc.yml index 082d73cb..2a8cf2eb 100644 --- a/.github/workflows/maven_adhoc.yml +++ b/.github/workflows/maven_adhoc.yml @@ -70,8 +70,8 @@ jobs: run: | openssl version -e chcp 65001 #set code page to utf-8 - echo ((openssl version -e) -replace ': "','=' -replace 'engines.+','') >> $env:GITHUB_ENV - echo ((openssl version -e) -replace ': "','=' -replace 'engines.+','') + echo ((openssl version -e) -replace ': "','=' -replace '\\engines-.*','' >> $env:GITHUB_ENV + echo ((openssl version -e) -replace ': "','=' -replace '\\engines-.*','' # - name: Build with Maven (not Windows) # if: ${{ matrix.os != 'windows-latest' }} # run: | @@ -87,7 +87,7 @@ jobs: env: OPENSSL_HOME: "C:\\Miniconda\\Library" run: | - echo mvn test --show-version --batch-mode --no-transfer-progress -DtrimStackTrace=false -D"jni.library.path=C:\Program Files\OpenSSL\lib\" -D"jna.library.path=C:\Program Files\OpenSSL\lib\" + echo mvn test --show-version --batch-mode --no-transfer-progress -DtrimStackTrace=false -D"jni.library.path=$env:ENGINESDIR" -D"jna.library.path=$env:ENGINESDIR" # - name: Run Crypto (JNI) # 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"