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 e219f00  Try to find library
e219f00 is described below

commit e219f00564b578c0813d0c3936c120b8154d4ab1
Author: Sebb <[email protected]>
AuthorDate: Sun Jul 3 21:55:18 2022 +0100

    Try to find library
---
 .github/workflows/adhoctest.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/adhoctest.yml b/.github/workflows/adhoctest.yml
index a52b6af..fd71336 100644
--- a/.github/workflows/adhoctest.yml
+++ b/.github/workflows/adhoctest.yml
@@ -31,8 +31,8 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        # os: [macos-latest, windows-latest]
-        os: [windows-latest]
+        os: [macos-latest, windows-latest]
+        # os: [windows-latest]
         java: [ 8 ]
         # ref: [ 'rel/commons-crypto-1.1.0', master ]
         ref: [ master ]
@@ -64,6 +64,9 @@ jobs:
       if: ${{ matrix.os == 'macos-latest' }}
       run: |
         for i in $(which -a openssl) ; do  echo $i; $i version ; echo ""; done
+        find /usr/lib -name libcrypto*.dylib -ls
+        find /usr/local/lib -name libcrypto*.dylib -ls
+        find /opt/local/lib -name libcrypto*.dylib -ls
     - name: Find OpenSSL Win
       if: ${{ matrix.os == 'windows-latest' }}
       run: |
@@ -72,6 +75,9 @@ jobs:
         where /T libcrypto.dll
         echo "==="
         dir "C:\Program Files\OpenSSL\bin\"
+        C:
+        cd \
+        dir /s libcrypto*.dll
       shell: cmd
     - name: env sort
       if: always()

Reply via email to