Add Posix build checker to git actions (#489)

* Add Posix build checker to git actions

* fix checker path

* Fix script, checkout recursively

* fix build check script return value

* clone submodules as well with posix checker

* Add quotes to true for submodules

* Fix Submodules

* Remove pcap dependency from Makefile

* install libpcap for build check

* Add networking build to posix

* Separate network build from normal build

* add libpcap after building normal posix
This commit is contained in:
alfred gedeon 2021-01-12 20:13:29 -08:00 committed by GitHub
parent 36fd2c8d8c
commit 47d37354bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 68 additions and 1 deletions

View file

@ -59,7 +59,7 @@ SOURCE_FILES += ${FREERTOS_PLUS_DIR}/Source/FreeRTOS-Plus-Trace/streamports/File
CFLAGS := -ggdb3 -O0 -DprojCOVERAGE_TEST=0 -D_WINDOWS_
LDFLAGS := -ggdb3 -O0 -pthread -lpcap
LDFLAGS := -ggdb3 -O0 -pthread
OBJ_FILES = $(SOURCE_FILES:%.c=$(BUILD_DIR)/%.o)