Skip to content

CRYPTO-174: Allow override of SSL library name (#269) #57

CRYPTO-174: Allow override of SSL library name (#269)

CRYPTO-174: Allow override of SSL library name (#269) #57

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Maven adhoc
on:
# allow direct trigger
workflow_dispatch:
# self-trigger
push:
paths:
- '**/maven_adhoc.yml'
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
# macos-latest and ubuntu-latest uses OpenSSL 3 which breaks tests
# os: [macos-11, ubuntu-20.04, windows-latest]
os: [ windows-latest ]
# These names are used in conditional statements below.
# java: [ 8, 11, 17, 21 ]
java: [ 8 ]
experimental: [false]
steps:
- name: Search
run: |
dir "C:\Program Files"
dir "C:\Program Files\OpenSSL"
dir "C:\Program Files\OpenSSL\lib"
dir "C:\Windows\SYSTEM32"
- name: OpenSSL version
run: openssl version -a
# Get-Childitem –Path "C:\Program Files" -File -Include libcrypto* -Recurse -ErrorAction SilentlyContinue
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
env:
OPENSSL_HOME: "C:\\Miniconda\\Library"
NAME: "libcrypto-1_1-x64"
run: |
mvn clean test -B -V -ntp -D"jna.debug_load=true" -DtrimStackTrace=false -D"jni.library.name=$env:NAME" -D"commons.crypto.OpenSslNativeJna=$env:NAME" -D"commons.crypto.openssl.check=skip" -D"commons.crypto.debug=true"
- name: JNA test
if: always()
env:
NAME: "crypto-1_1-x64"
run: |
mvn -q exec:java -D"jna.debug_load=true" -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"commons.crypto.debug=true" -D"commons.crypto.OpenSslNativeJna=$env:NAME"
- name: JNI test
if: always()
env:
NAME: "libcrypto-1_1-x64"
run: |
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto" -D"commons.crypto.debug=true" -D"jni.library.name=$env:NAME"