File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: tcpdump Tests
22
33on :
44 push :
5- branches : [ 'master', 'main', 'release/**' ]
5+ branches : [ '*' ] # ' master', 'main', 'release/**' ]
66 pull_request :
77 branches : [ '*' ]
88concurrency :
@@ -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
You can’t perform that action at this time.
0 commit comments