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 e673f1a1 Keep trying
e673f1a1 is described below

commit e673f1a18bd67cc9305d374caa078a8a495e3361
Author: Sebb <s...@apache.org>
AuthorDate: Tue Oct 31 20:42:47 2023 +0000

    Keep trying
    
    [skip ci]
---
 .github/workflows/maven_adhoc.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven_adhoc.yml 
b/.github/workflows/maven_adhoc.yml
index 7e0a7b50..270d7f8b 100644
--- a/.github/workflows/maven_adhoc.yml
+++ b/.github/workflows/maven_adhoc.yml
@@ -58,10 +58,16 @@ jobs:
         java-version: ${{ matrix.java }}
     - name: OpenSSL version
       run: openssl version -a
-    - name: OpenSSL engine (unix)
+    - name: OpenSSL engine (macos)
+      # need to override the libarary on macOS
       if: ${{ matrix.os == 'macos-11' }}
       run: |
-        echo $(openssl version -e | sed -n -e 's/engines-.*/"/' -e 's/: /=/p') 
>> "$GITHUB_ENV"
+        echo $(openssl version -e | sed -n -e 's/engines-.*//' -e 's/: "/=/p') 
>> "$GITHUB_ENV"
+    - name: OpenSSL engine (windows)
+      # need to override the libarary on windows
+      if: ${{ matrix.os == 'windows-latest' }}
+      run: |
+        openssl version -e
     - name: Build with Maven
       # OPENSSL_HOME is needed for Windows build; not used by other builds so 
can set unconditionally
       # It's not clear how one is supposed to find the correct setting;

Reply via email to