File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Fuzzer
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ release :
7
+ types :
8
+ - created
9
+
10
+ jobs :
11
+ # ---------------------------------------
12
+ # Build all no-family (orphaned) boards
13
+ # ---------------------------------------
14
+ build-board :
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ fuzz_harness :
20
+ - " device/cdc"
21
+ - " device/msc"
22
+
23
+ steps :
24
+ - name : Setup Python
25
+ uses : actions/setup-python@v3
26
+
27
+ - name : Checkout TinyUSB
28
+ uses : actions/checkout@v3
29
+
30
+ - name : Fetch deps
31
+ run : sudo apt update && sudo apt install libc++abi-dev libc++-dev
32
+ - name : Build Fuzzer
33
+ run : make CC=clang CXX=clang++ -C fuzz/${{ matrix.fuzz_harness }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ LIBS_GCC ?= -lm
15
15
LIBS += $(LIBS_GCC )
16
16
17
17
ifneq ($(BOARD ) , spresense)
18
- LIBS += -lc -Wl,-Bstatic -lc++ -lc++abi - Wl,-Bdynamic
18
+ LIBS += -lc -Wl,-Bstatic -lc++ -Wl,-Bdynamic
19
19
endif
20
20
21
21
# TinyUSB Stack source
You can’t perform that action at this time.
0 commit comments