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
commit cdfa3991bb9f1439821f1b008996ca78dcb6ad94 Author: Sebb <s...@apache.org> AuthorDate: Sun Jun 12 23:07:59 2022 +0100 Trying to fix Windows build --- .github/workflows/maven.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b1099cd..861a56e 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,8 +24,11 @@ jobs: continue-on-error: ${{ matrix.experimental }} strategy: matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - java: [ 8, 11, 17 ] + # os: [macos-latest, ubuntu-latest, windows-latest] + # java: [ 8, 11, 17 ] + # Trying to fix macOS build + os: [macos-latest] + java: [ 8 ] experimental: [false] # include: # - java: 18-ea @@ -52,5 +55,9 @@ jobs: with: distribution: 'temurin' java-version: ${{ matrix.java }} + - name: OpenSSL version + run: openssl version + - name: Find missing file + run: find /usr -name aes.h - name: Build with Maven run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false