Skip to content

Commit b17f54d

Browse files
Test Userpadelsbach
authored andcommitted
Add updated test with WPFF
1 parent f1f7322 commit b17f54d

38 files changed

Lines changed: 461 additions & 175 deletions

.github/workflows/bind9.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
shell: bash
115115
run: |
116116
# Verify wolfProvider is properly installed
117-
source $GITHUB_WORKSPACE/scripts/verify-debian.sh
117+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
118118
119119
set +o pipefail # ignore errors from make check
120120
autoreconf -ivf

.github/workflows/cjose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
working-directory: cjose
109109
run: |
110110
# Verify wolfProvider is properly installed
111-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
111+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
112112
export ${{ matrix.force_fail }}
113113
114114
make test 2>&1 | tee cjose-test.log

.github/workflows/curl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
shell: bash
109109
run: |
110110
# Verify wolfProvider is properly installed
111-
source $GITHUB_WORKSPACE/scripts/verify-debian.sh
111+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
112112
set +o pipefail # ignore errors from make check
113113
export ${{ matrix.force_fail }}
114114
export CURL_REF=${{ matrix.curl_ref }}

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232
timeout-minutes: 20
3333
strategy:
3434
matrix:
35-
wolfssl_ref: ['master', 'v5.8.2-stable']
36-
key_type: ['rsa', 'ecdsa', 'ed25519']
37-
iterations: [10] # Total of 50 runs
35+
wolfssl_ref: [ 'master', 'v5.8.2-stable' ]
36+
key_type: [ 'rsa', 'ecdsa', 'ed25519', 'chacha20-poly1305' ]
37+
force_fail: [ 'WOLFPROV_FORCE_FAIL=1', '' ]
38+
iterations: [ 10 ] # Total of 50 runs
3839
env:
3940
WOLFSSL_PACKAGES_PATH: /tmp/wolfssl-packages
4041
OPENSSL_PACKAGES_PATH: /tmp/openssl-packages
@@ -86,7 +87,7 @@ jobs:
8687
shell: bash
8788
run: |
8889
# Verify wolfProvider is properly installed
89-
source scripts/verify-debian.sh
90+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
9091
9192
echo "=== Running Git + replace default + ssh Test ==="
9293
echo "Using the local test script for consistent testing"
@@ -95,7 +96,7 @@ jobs:
9596
echo "Running ${{ matrix.iterations }} iterations"
9697
9798
# Run the scripts test
98-
./scripts/test-git-ssh-dr.sh \
99+
${{ matrix.force_fail }} ./scripts/test-git-ssh-dr.sh \
99100
--key-types "${{ matrix.key_type }}" \
100101
--iterations "${{ matrix.iterations }}" \
101102
--verbose

.github/workflows/grpc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
working-directory: ./grpc
131131
run: |
132132
# Verify wolfProvider is properly installed
133-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
133+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
134134
135135
# Start the port server
136136
./tools/run_tests/start_port_server.py

.github/workflows/iperf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
working-directory: iperf
120120
run: |
121121
# Verify wolfProvider is properly installed
122-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
122+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
123123
export ${{ matrix.force_fail }}
124124
125125
# Test variables for iperf

.github/workflows/ipmitool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
working-directory: ipmitool
9999
run: |
100100
# Verify wolfProvider is properly installed
101-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
101+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
102102
103103
# Verify ipmitool was built and linked correctly with OpenSSL
104104
ldd src/ipmitool | grep -E '(libssl|libcrypto)'

.github/workflows/krb5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
shell: bash
114114
run: |
115115
# Verify wolfProvider is properly installed
116-
source $GITHUB_WORKSPACE/scripts/verify-debian.sh
116+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
117117
118118
set +o pipefail # ignore errors from make check
119119
# Build KRB5

.github/workflows/libcryptsetup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
working-directory: cryptsetup
133133
run: |
134134
# Verify wolfProvider is properly installed
135-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
135+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
136136
export ${{ matrix.force_fail }}
137137
138138
# from the cryptsetup source root

.github/workflows/libeac3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
working-directory: openpace
119119
run: |
120120
# Verify wolfProvider is properly installed
121-
. $GITHUB_WORKSPACE/scripts/verify-debian.sh
121+
./$GITHUB_WORKSPACE/scripts/verify-debian.sh
122122
export ${{ matrix.force_fail }}
123123
./src/eactest > libeac3-test.log || echo "eactest failed with exit code $?"
124124
cat libeac3-test.log

0 commit comments

Comments
 (0)