Skip to content

Commit

Permalink
Try to find aes.h
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Jul 23, 2024
1 parent 686ab2b commit 1552b77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/adhoctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
os: [macos-latest]
# os: [macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04]
fail-fast: false

steps:
- name: OpenSSL version
run: openssl version -a
- name: Find libcrypto on Windows
if: ${{ startsWith(matrix.os,'windows') }}
if: ${{ runner.os == 'Windows' }}
run: |
dir "C:\Program Files\OpenSSL*\*"
dir "C:\Program Files\OpenSSL*\lib\*"
- name: Find libcrypto on !Windows
if: ${{ ! startsWith(matrix.os,'windows') }}
- name: Find aes.h on !Windows
if: ${{ runner.os != 'Windows' }}
run: |
which -a openssl
find /usr -name libcrypto* -ls || true
find /usr -name aes.h -ls || true
which -a openssl | while read a ;do echo "$a" ; "$a" version -a; echo '======='; done

0 comments on commit 1552b77

Please sign in to comment.