We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8223f5 commit 9ac2720Copy full SHA for 9ac2720
.github/workflows/tcpdump.yml
@@ -2,7 +2,7 @@ name: tcpdump Tests
2
3
on:
4
push:
5
- branches: [ 'master', 'main', 'release/**' ]
+ branches: [ '*' ] #'master', 'main', 'release/**' ]
6
pull_request:
7
branches: [ '*' ]
8
concurrency:
@@ -111,10 +111,8 @@ jobs:
111
fetch-depth: 1
112
- run: |
113
cd tcpdump_repo
114
- if [ ${{ matrix.fips_ref == 'FIPS' }} ]; then
+ 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
118
fi
119
120
- name: Build and install tcpdump
0 commit comments