Skip to content

Commit a67f436

Browse files
committed
Experimenting with tcpdump
1 parent a8223f5 commit a67f436

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/tcpdump.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: tcpdump Tests
22

33
on:
44
push:
5-
branches: [ 'master', 'main', 'release/**' ]
5+
branches: [ '*' ] #'master', 'main', 'release/**' ]
66
pull_request:
77
branches: [ '*' ]
88
concurrency:
@@ -111,11 +111,10 @@ jobs:
111111
fetch-depth: 1
112112
- run: |
113113
cd tcpdump_repo
114-
if [ ${{ matrix.fips_ref == 'FIPS' }} ]; then
115-
patch -p1 < $GITHUB_WORKSPACE/osp/wolfProvider/tcpdump/tcpdump-FIPS-${{ matrix.tcpdump_ref }}-wolfprov.patch
116-
else
117-
patch -p1 < $GITHUB_WORKSPACE/osp/wolfProvider/tcpdump/tcpdump-${{ matrix.tcpdump_ref }}-wolfprov.patch
114+
if [ "${{ matrix.fips_ref }}" = "FIPS" ]; then
115+
TCPDUMP_PATCH_FILE=$GITHUB_WORKSPACE/osp/wolfProvider/tcpdump/tcpdump-FIPS-${{ matrix.tcpdump_ref }}-wolfprov.patch
118116
fi
117+
patch -p1 < $TCPDUMP_PATCH_FILE
119118
120119
- name: Build and install tcpdump
121120
working-directory: tcpdump_repo

0 commit comments

Comments
 (0)