We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee115e commit b69cd17Copy full SHA for b69cd17
.github/workflows/ci.yml
@@ -32,6 +32,29 @@ jobs:
32
run: |
33
make check || (find . -name test-suite.log -exec cat {} \; && false)
34
35
+ linux_openssl3:
36
+ name: Linux (openssl 3)
37
+ runs-on: ubuntu-latest # for OpenSSL 3
38
+ strategy:
39
+ fail-fast: false
40
+ matrix:
41
+ include:
42
+ - backend: openssl
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+ - name: Prepare
46
+ run: |
47
+ sudo apt update -qq
48
+ sudo apt install libcppunit-dev p11-kit
49
+ - name: Build
50
51
+ ./autogen.sh
52
+ ./configure --with-crypto-backend=${{ matrix.backend }}
53
+ make
54
+ - name: Test
55
56
+ make check || (find . -name test-suite.log -exec cat {} \; && false)
57
+
58
macos:
59
name: macOS (${{ matrix.backend }})
60
runs-on: macos-14
0 commit comments