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 926abbd5 More non-windows info 926abbd5 is described below commit 926abbd5adff97ccc76957bd6938749157eb79bc Author: Sebb <s...@apache.org> AuthorDate: Sat Nov 18 11:34:21 2023 +0000 More non-windows info --- .github/workflows/adhoctest.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/adhoctest.yml b/.github/workflows/adhoctest.yml index ca9fe24c..4d7e121e 100644 --- a/.github/workflows/adhoctest.yml +++ b/.github/workflows/adhoctest.yml @@ -34,7 +34,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04] + os: [macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04] fail-fast: false steps: @@ -48,4 +48,6 @@ jobs: if: ${{ ! startsWith(matrix.os,'windows') }} run: | which -a openssl - find /usr -name libcrypto* -ls + find /usr -name libcrypto* -ls || true + for i in $(which -a openssl); do echo $i; $i version -a; echo '====='; done +