-
Notifications
You must be signed in to change notification settings - Fork 96
181 lines (164 loc) · 6.77 KB
/
maven.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# 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: Java CI
# cross-build tests are done in a separate action as they currrently take a long time
# if the expectedVersion property is set, the test will check if the OpenSSL (or LibreSSL) version agrees
# with the major/minor version (lower 32 bits are ignored)
# N.B. LibreSSL may identify itself as 3.0.2 in the text output, but the long version is 0x20000000
# The intention of the check is to show that various different versions have been tested at least once
on:
# allow direct trigger
workflow_dispatch:
push:
paths-ignore:
- '**/workflows/*.yml'
- 'src/docker/*'
- '!**/workflows/maven.yml'
pull_request:
paths-ignore:
- '**/workflows/*.yml'
- 'src/docker/*'
- '!**/workflows/maven.yml'
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [macos-11, ubuntu-20.04, windows-latest]
java: [ 8, 11, 17, 21 ]
experimental: [false]
include:
- os: macos-latest
java: 8
experimental: false
# macos-latest is currently macos-12
# - os: macos-12
# java: 8
# experimental: false
- os: macos-13
java: 8
experimental: false
- os: ubuntu-latest
java: 8
expectedVersion: "30000000"
experimental: false
# Add expectedVersion to some existing matrix combinations
- os: macos-11
java: 8
expectedVersion: "10100000"
- os: windows-latest
java: 8
# OpenSSLVersion(0): LibreSSL 3.0.2
# shows version: 0x20000000
expectedVersion: "20000000"
# - java: 22-ea
# os: ubuntu-20.04
# experimental: true
# - java: 22-ea
# os: windows-latest
# experimental: true
# - java: 22-ea
# os: macos-latest
# experimental: true
# macos-13-arm64 does not appear to be available
# - java: 21
# os: macos-13-arm64
# experimental: true
# We don't need to build all Java versions every time
# Try excluding 11, 17 on branch pushes
exclude:
- java: ${{ (github.ref != 'refs/heads/master' && github.event_name == 'push') && 11 || 99 }}
- java: ${{ (github.ref != 'refs/heads/master' && github.event_name == 'push') && 17 || 99 }}
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
with:
persist-credentials: false
- name: Maven cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: OpenSSL version (default)
run: openssl version -a
- name: OpenSSL engine (macOS)
# need to override the libarary path on macOS to avoid 'unsafe load' complaint
if: ${{ runner.os == 'macOS' }}
run: |
echo $(openssl version -e | sed -n -e 's/engines-.*//' -e 's/: "/=/p') >> "$GITHUB_ENV"
- name: Package with Maven (skip tests)
# OPENSSL_HOME is needed for Windows build to find some header files
# It's not clear how one is supposed to find the correct setting;
# The value below was found by searching for openssl files under C (warning: slow)
# Other possible values are:
# "C:\\Miniconda\\pkgs\\openssl-1.1.1n-h2bbff1b_0\\Library"
# "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\opt"
# N.B. This must *not* be run under the bash shell, as that changes the default openssl library under Windows
env:
OPENSSL_HOME: "C:\\Miniconda\\Library"
run: |
mvn -V -B -ntp -DskipTests clean package
# macOS tests
- name: Test with Maven (macOS)
# macOS needs to override the library name (macOS-11)
if: ${{ runner.os == 'macOS' }}
run: >
mvn -V -B -ntp surefire:test -Djni.library.path=$ENGINESDIR -Djna.library.path=$ENGINESDIR
-DOpenSslJnaTest.expectedVersion=${{ matrix.expectedVersion }}
-DCryptoTest.expectedVersion=${{ matrix.expectedVersion }}
- name: Test with Maven (macOS) test-with-jar
# macOS needs to override the library name (macOS-11)
if: ${{ runner.os == 'macOS' }}
run: |
mvn -V -B -ntp surefire:test -Djni.library.path=$ENGINESDIR -Djna.library.path=$ENGINESDIR -Ptest-with-jar
- name: Test with Maven (macOS) no library override
# macOS needs to override the library name (macOS-11)
if: ${{ runner.os == 'macOS' }}
run: |
mvn -V -B -ntp surefire:test -D"test=CryptoTest,OpenSslJnaTest" || true
# tests (not macOS)
- name: Test with Maven (not macOS)
if: ${{ runner.os != 'macOS' }}
run: >
mvn -V -B -ntp surefire:test
-D"OpenSslJnaTest.expectedVersion=${{ matrix.expectedVersion }}"
-D"CryptoTest.expectedVersion=${{ matrix.expectedVersion }}"
- name: Test with Maven (not macOS) test-with-jar
if: ${{ runner.os != 'macOS' }}
run: |
mvn -V -B -ntp surefire:test -Ptest-with-jar
- name: Check benchmark code compiles
if: ${{ matrix.java == '8' }}
env:
OPENSSL_HOME: "C:\\Miniconda\\Library"
run: |
mvn -V -B -ntp clean test-compile -Pbenchmark
- name: Check JNI and JNA tests are independent
# No need to test on all OS/Java combinations
if: ${{ matrix.java == '8' && runner.os == 'Ubuntu' }}
run: |
mvn -V -B -ntp test -Ptestjni -Dcommons.crypto.OpenSslNativeJna=___
mvn -V -B -ntp test -Ptestjna -Dcommons.crypto.OpenSslNativeJni=___