File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -194,6 +194,8 @@ jobs:
194194 - name : Make
195195 if : matrix.san != 'FUZZER' && steps.cache-build.outputs.cache-hit != 'true'
196196 run : |
197+ echo "At start of Make target"
198+ echo "PWD is $(pwd), wc is ${{ env.wc }}, BUILD is ${{ env.build }}"
197199 # note: lexer.h first, because parser.? depends on it
198200 find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
199201 find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
@@ -206,6 +208,8 @@ jobs:
206208 if : matrix.san == 'FUZZER' && steps.cache-build.outputs.cache-hit != 'true'
207209 run : |
208210 # note: lexer.h first, because parser.? depends on it
211+ echo "At start of Make (Fuzzer) target"
212+ echo "PWD is $(pwd), wc is ${{ env.wc }}, BUILD is ${{ env.build }}"
209213 find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
210214 find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
211215 ${{ matrix.make }} -r -j $((${{ steps.cpu-cores.outputs.count }} + 1)) -C ${{ env.wc }} BUILD=../${{ env.build }} ${{ matrix.san }}=1 ${{ matrix.debug }}=1 AUSAN=1 PKGCONF=pkg-config CC=${{ matrix.cc }} NODOC=1 mkdir
You can’t perform that action at this time.
0 commit comments