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 7f288361 Again
7f288361 is described below
commit 7f2883616e6c2d051257dcae9efdcc48dc697a38
Author: Sebb <[email protected]>
AuthorDate: Tue Jul 23 23:09:18 2024 +0100
Again
---
.github/workflows/adhoctest.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/adhoctest.yml b/.github/workflows/adhoctest.yml
index 5d68abec..0ff3f03d 100644
--- a/.github/workflows/adhoctest.yml
+++ b/.github/workflows/adhoctest.yml
@@ -49,9 +49,10 @@ jobs:
- name: Find aes.h on !Windows
if: ${{ runner.os != 'Windows' }}
run: |
- which -a openssl
find /usr -name aes.h -ls || true
find /usr -type d -name openssl -ls || true
find /opt -name aes.h -ls || true
find /opt -type d -name openssl -ls || true
+ ls -l /usr/local/include /usr/local/opt/openssl/include # is this
where macos12-13 find aes.h?
+ ls -l /opt/local/include # Try this for macos-14
which -a openssl | while read a ;do echo "$a" ; "$a" version -a; echo
'======='; done