Skip to content

Commit 9783871

Browse files
author
Test User
committed
Fix execution
1 parent 0d9f009 commit 9783871

37 files changed

+43
-83
lines changed

.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 scripts/verify-debian.sh
117+
source $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-
source 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 scripts/verify-debian.sh
111+
source $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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
shell: bash
8787
run: |
8888
# Verify wolfProvider is properly installed
89-
source scripts/verify-debian.sh
89+
source $GITHUB_WORKSPACE/scripts/verify-debian.sh
9090
9191
echo "=== Running Git + replace default + ssh Test ==="
9292
echo "Using the local test script for consistent testing"

.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-
source 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-
source 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-
source 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 scripts/verify-debian.sh
116+
source $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-
source 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-
source 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)