Skip to content

Commit

Permalink
DEBUG: figure out CI issues
Browse files Browse the repository at this point in the history
Change-Id: I4ff15e614196e60308d58a5e0812592f1fd0e40f
  • Loading branch information
steadmon committed Mar 4, 2024
1 parent 3ea090e commit 24eb352
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ jobs:
vector:
- jobname: linux-sha256
cc: clang
cxx: clang++
pool: ubuntu-latest
- jobname: linux-reftable
cc: clang
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3865,7 +3865,10 @@ FUZZ_CXXFLAGS ?= $(ALL_CFLAGS)
$(FUZZ_PROGRAMS): %: %.o oss-fuzz/dummy-cmd-main.o $(GITLIBS) GIT-LDFLAGS
$(QUIET_LINK)$(CXX) $(FUZZ_CXXFLAGS) -o $@ $(ALL_LDFLAGS) \
-Wl,--allow-multiple-definition \
$(filter %.o,$^) $(filter %.a,$^) $(LIBS) $(LIB_FUZZING_ENGINE)
$(filter %.o,$^) $(filter %.a,$^) $(LIBS) $(LIB_FUZZING_ENGINE) \
$(info COMPILER_FEATURES is [${COMPILER_FEATURES}])\
$(info CC is [${CC}])\
$(info CXX is [${CXX}])\

fuzz-all: $(FUZZ_PROGRAMS)

Expand Down

0 comments on commit 24eb352

Please sign in to comment.