Skip to content

Commit 0f34478

Browse files
committed
Update remaining workflows
1 parent 979bbeb commit 0f34478

35 files changed

+105
-35
lines changed

.github/workflows/bind9.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_bind:
2930
runs-on: ubuntu-22.04
@@ -42,6 +43,7 @@ jobs:
4243
openssl_ref: [ 'openssl-3.5.2' ]
4344
force_fail: ['WOLFPROV_FORCE_FAIL=1', '']
4445
replace_default: [ true ]
46+
fips: [ false ]
4547
env:
4648
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4749
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -114,7 +116,7 @@ jobs:
114116
shell: bash
115117
run: |
116118
# Verify wolfProvider is properly installed
117-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
119+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
118120
119121
set +o pipefail # ignore errors from make check
120122
autoreconf -ivf

.github/workflows/curl.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_curl:
2930
runs-on: ubuntu-22.04
@@ -41,6 +42,7 @@ jobs:
4142
openssl_ref: [ 'openssl-3.5.2' ]
4243
force_fail: ['WOLFPROV_FORCE_FAIL=1', '']
4344
replace_default: [ true ]
45+
fips: [ false ]
4446
env:
4547
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4648
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -108,7 +110,7 @@ jobs:
108110
shell: bash
109111
run: |
110112
# Verify wolfProvider is properly installed
111-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
113+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
112114
set +o pipefail # ignore errors from make check
113115
export ${{ matrix.force_fail }}
114116
export CURL_REF=${{ matrix.curl_ref }}

.github/workflows/git-ssh-dr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
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
@@ -36,6 +37,7 @@ jobs:
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
@@ -87,7 +89,7 @@ jobs:
8789
shell: bash
8890
run: |
8991
# Verify wolfProvider is properly installed
90-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
92+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
9193
9294
echo "=== Running Git + replace default + ssh Test ==="
9395
echo "Using the local test script for consistent testing"

.github/workflows/grpc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_grpc:
2930
runs-on: ubuntu-22.04
@@ -48,6 +49,7 @@ jobs:
4849
wolfssl_ref: [ 'v5.8.2-stable' ]
4950
openssl_ref: [ 'openssl-3.5.2' ]
5051
replace_default: [ true ]
52+
fips: [ false ]
5153
env:
5254
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
5355
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -130,7 +132,7 @@ jobs:
130132
working-directory: ./grpc
131133
run: |
132134
# Verify wolfProvider is properly installed
133-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
135+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
134136
135137
# Start the port server
136138
./tools/run_tests/start_port_server.py

.github/workflows/iperf.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_iperf:
2930
runs-on: ubuntu-22.04
@@ -41,6 +42,7 @@ jobs:
4142
openssl_ref: [ 'openssl-3.5.2' ]
4243
force_fail: ['WOLFPROV_FORCE_FAIL=1', '']
4344
replace_default: [ true ]
45+
fips: [ false ]
4446
env:
4547
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4648
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -119,7 +121,7 @@ jobs:
119121
working-directory: iperf
120122
run: |
121123
# Verify wolfProvider is properly installed
122-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
124+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
123125
export ${{ matrix.force_fail }}
124126
125127
# Test variables for iperf

.github/workflows/ipmitool.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_ipmitool:
2930
runs-on: ubuntu-22.04
@@ -41,6 +42,7 @@ jobs:
4142
wolfssl_ref: [ 'v5.8.2-stable' ]
4243
openssl_ref: [ 'openssl-3.5.2' ]
4344
replace_default: [ true ]
45+
fips: [ false ]
4446
env:
4547
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4648
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -98,7 +100,7 @@ jobs:
98100
working-directory: ipmitool
99101
run: |
100102
# Verify wolfProvider is properly installed
101-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
103+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
102104
103105
# Verify ipmitool was built and linked correctly with OpenSSL
104106
ldd src/ipmitool | grep -E '(libssl|libcrypto)'

.github/workflows/krb5.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_krb5:
2930
runs-on: ubuntu-22.04
@@ -41,6 +42,7 @@ jobs:
4142
openssl_ref: [ 'openssl-3.5.2' ]
4243
force_fail: [ 'WOLFPROV_FORCE_FAIL=1', '' ]
4344
replace_default: [ true ]
45+
fips: [ false ]
4446
env:
4547
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4648
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -113,7 +115,7 @@ jobs:
113115
shell: bash
114116
run: |
115117
# Verify wolfProvider is properly installed
116-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
118+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
117119
118120
set +o pipefail # ignore errors from make check
119121
# Build KRB5

.github/workflows/libcryptsetup.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_cryptsetup:
2930
runs-on: ubuntu-22.04
@@ -42,6 +43,7 @@ jobs:
4243
openssl_ref: ['openssl-3.5.2']
4344
force_fail: ['WOLFPROV_FORCE_FAIL=1', '']
4445
replace_default: [ true ]
46+
fips: [ false ]
4547
env:
4648
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4749
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -132,7 +134,7 @@ jobs:
132134
working-directory: cryptsetup
133135
run: |
134136
# Verify wolfProvider is properly installed
135-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
137+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
136138
export ${{ matrix.force_fail }}
137139
138140
# from the cryptsetup source root

.github/workflows/libeac3.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
wolfssl_ref: [ 'v5.8.2-stable' ]
2525
openssl_ref: [ 'openssl-3.5.2' ]
2626
replace_default: [ true ]
27+
fips: [ false ]
2728

2829
test_libeac3:
2930
runs-on: ubuntu-22.04
@@ -41,6 +42,7 @@ jobs:
4142
openssl_ref: [ 'openssl-3.5.2' ]
4243
force_fail: [ 'WOLFPROV_FORCE_FAIL=1', '' ]
4344
replace_default: [ true ]
45+
fips: [ false ]
4446
env:
4547
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4648
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -118,7 +120,7 @@ jobs:
118120
working-directory: openpace
119121
run: |
120122
# Verify wolfProvider is properly installed
121-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
123+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
122124
export ${{ matrix.force_fail }}
123125
./src/eactest > libeac3-test.log || echo "eactest failed with exit code $?"
124126
cat libeac3-test.log

.github/workflows/libfido2.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
wolfssl_ref: [ 'v5.8.2-stable' ]
2121
openssl_ref: [ 'openssl-3.5.2' ]
2222
replace_default: [ true ]
23+
fips: [ false ]
2324

2425
test_libfido2:
2526
runs-on: ubuntu-22.04
@@ -36,6 +37,7 @@ jobs:
3637
openssl_ref: [ 'openssl-3.5.2' ]
3738
force_fail: [ 'WOLFPROV_FORCE_FAIL=1', '' ]
3839
replace_default: [ true ]
40+
fips: [ false ]
3941
env:
4042
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4143
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -102,7 +104,7 @@ jobs:
102104
working-directory: libfido2_repo/build
103105
run: |
104106
# Verify wolfProvider is properly installed
105-
$GITHUB_WORKSPACE/scripts/verify-debian.sh
107+
$GITHUB_WORKSPACE/scripts/verify-install.sh ${{ matrix.replace_default && '-replace-default' || '' }} ${{ matrix.fips && '--fips' || '' }}
106108
export ${{ matrix.force_fail }}
107109
108110
# Run tests, excluding regress_dev which requires hardware/fails in CI

0 commit comments

Comments
 (0)