Prefer SoftHSMv2 installed from source #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
version: 0.4.13_git | |
jobs: | |
unix: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: 'ubuntu-22.04' | |
- os: 'ubuntu-20.04' | |
- os: 'macOS-latest' | |
openssl: 'openssl@3' | |
- os: 'macOS-latest' | |
openssl: '[email protected]' | |
runs-on: ${{matrix.os}} | |
env: | |
PKG_CONFIG_PATH: /usr/local/opt/${{matrix.openssl}}/lib/pkgconfig | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install apt dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: sudo apt-get install -y libssl-dev opensc softhsm | |
- name: Install brew dependencies (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install automake ${{matrix.openssl}} softhsm | |
brew install --cask opensc | |
echo "/usr/local/opt/${{matrix.openssl}}/bin" >> $GITHUB_PATH | |
- name: System information | |
run: | | |
openssl version -a | |
echo "PATH=$PATH" | |
- name: Bootstrap | |
run: autoreconf --verbose --install --force | |
- name: Configure | |
run: ./configure --enable-strict | |
- name: Build | |
run: make | |
- name: Test | |
timeout-minutes: 5 | |
run: make check | |
- name: Results of failed tests | |
if: failure() | |
run: cat tests/test-suite.log || true | |
windows: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- arch: 'x86' | |
build_for: 'WIN32' | |
- arch: 'x64' | |
build_for: 'WIN64' | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache the vcpkg archives | |
uses: actions/cache@v4 | |
with: | |
path: C:/Users/runneradmin/AppData/Local/vcpkg/archives | |
key: ${{matrix.arch}} | |
- name: Configure Visual Studio | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{matrix.arch}} | |
- name: Install OpenSSL with VCPKG | |
run: | | |
vcpkg install --triplet=${{matrix.arch}}-windows openssl | |
echo "C:\vcpkg\packages\openssl_${{matrix.arch}}-windows\tools\openssl" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: System information | |
run: openssl version -a | |
- name: Build | |
run: nmake -f Makefile.mak | |
BUILD_FOR=${{matrix.build_for}} | |
OPENSSL_DIR="C:\vcpkg\packages\openssl_${{matrix.arch}}-windows" | |
- name: Upload the DLLs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libp11-${{env.version}}-${{matrix.arch}} | |
path: ${{github.workspace}}/src/*.dll |