Skip to content

Commit

Permalink
Allow complete
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Jul 23, 2024
1 parent 7f28836 commit ec898e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/adhoctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12,macos-13,macos-14]
os: [macos-13,macos-14]
# os: [macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04]
fail-fast: false

Expand All @@ -49,10 +49,11 @@ jobs:
- name: Find aes.h on !Windows
if: ${{ runner.os != 'Windows' }}
run: |
set +e # want everything to run
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
ls -l /usr/local/include /usr/local/opt/openssl/include || true # is this where macos12-13 find aes.h?
ls -l /opt/local/include || true # Try this for macos-14
which -a openssl | while read a ;do echo "$a" ; "$a" version -a; echo '======='; done

0 comments on commit ec898e0

Please sign in to comment.