@@ -15,11 +15,12 @@ jobs:
1515 uses : ./.github/workflows/build-wolfprovider.yml
1616 with :
1717 wolfssl_ref : ${{ matrix.wolfssl_ref }}
18- openssl_ref : ' openssl-3.5.0 '
18+ openssl_ref : ' openssl-3.5.2 '
1919 replace_default : true
2020 strategy :
2121 matrix :
2222 wolfssl_ref : ['master', 'v5.8.2-stable']
23+ fips : [ false ]
2324
2425 git-ssh-default-replace-test :
2526 runs-on : ubuntu-22.04
3637 key_type : [ 'rsa', 'ecdsa', 'ed25519', 'chacha20-poly1305' ]
3738 force_fail : [ 'WOLFPROV_FORCE_FAIL=1', '' ]
3839 iterations : [ 10 ] # Total of 50 runs
40+ fips : [ false ]
3941 env :
4042 WOLFSSL_PACKAGES_PATH : /tmp/wolfssl-packages
4143 OPENSSL_PACKAGES_PATH : /tmp/openssl-packages
7678 apt install --reinstall -y \
7779 ${{ env.WOLFPROV_PACKAGES_PATH }}/libwolfprov_*.deb
7880
81+ - name : Verify wolfProvider is properly installed
82+ run : |
83+ $GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '--replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
84+
7985 - name : Set up environment
8086 run : |
8187 export DEBIAN_FRONTEND=noninteractive
8692 - name : Run git + replace default + ssh test
8793 shell : bash
8894 run : |
89- # Verify wolfProvider is properly installed
90- $GITHUB_WORKSPACE/scripts/verify-debian.sh
91-
9295 echo "=== Running Git + replace default + ssh Test ==="
9396 echo "Using the local test script for consistent testing"
9497 # Run the test with the matrix parameters
0 commit comments