Skip to content

Bump actions/checkout from 4.1.2 to 4.1.4 #74

Bump actions/checkout from 4.1.2 to 4.1.4

Bump actions/checkout from 4.1.2 to 4.1.4 #74

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: [ macos-latest, ubuntu-latest, windows-latest ]
# These names are used in conditional statements below.
# java: [ 8, 11, 17, 21 ]
java: [ 21 ]
experimental: [false]
steps:
- name: OpenSSL version
run: openssl version -a
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
persist-credentials: false
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build only
env:
OPENSSL_HOME: "C:\\Miniconda\\Library"
run: |
mvn clean test -B -V -ntp -DskipTests
- name: JNI test default
run: |
mvn -q exec:java -D"exec.mainClass=org.apache.commons.crypto.Crypto" -D"commons.crypto.debug=true"
- name: JNA test default
if: always()
run: |
mvn -q exec:java -D"jna.debug_load=true" -D"exec.mainClass=org.apache.commons.crypto.jna.OpenSslJna" -D"commons.crypto.debug=true"
- name: Maven test default
if: always()
run: |
mvn surefire:test -B -V -ntp -D"jna.debug_load=true" -DtrimStackTrace=false -D"commons.crypto.debug=true"