Skip to content

Commit 96c5d97

Browse files
committed
Fix failing multi-compiler test
1 parent a2bd3a3 commit 96c5d97

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/multi-compiler.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23+
openssl_ref: [ 'openssl-3.5.0' ]
2324
include:
2425
- CC: gcc-9
2526
CXX: g++-9
@@ -91,7 +92,8 @@ jobs:
9192
openssl-source
9293
openssl-install
9394
94-
key: ossl-${{ matrix.CC }}-depends
95+
key: ossl-depends-${{ matrix.openssl_ref }}-${{ github.sha }}
96+
lookup-only: true
9597

9698
# If not yet built this version, build it now
9799
- name: Build wolfProvider
@@ -100,7 +102,7 @@ jobs:
100102
CC: ${{ matrix.CC }}
101103
CXX: ${{ matrix.CXX }}
102104
run: |
103-
WOLFSSL_TAG=${{ matrix.wolfssl_ref }} ./scripts/build-wolfprovider.sh
105+
WOLFSSL_TAG=${{ matrix.wolfssl_ref }} OPENSSL_TAG=${{ matrix.openssl_ref }} ./scripts/build-wolfprovider.sh
104106
105107
- name: Print errors
106108
if: ${{ failure() }}

0 commit comments

Comments
 (0)