Skip to content

Commit 1f49cef

Browse files
committed
tmp: WIP CI Investigation (further)
1 parent ee28434 commit 1f49cef

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)