Change CI script to compile from build/Makefile

Helps some `make` versions properly use the `-j` option
This commit is contained in:
Jon Siwek 2020-06-02 10:55:43 -07:00
parent 1a60fb7c0d
commit e1f35c46f9
4 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,8 @@
3.2.0-dev.735 | 2020-06-02 10:55:43 -0700
* Change CI script to compile from build/Makefile (Jon Siwek, Corelight)
3.2.0-dev.734 | 2020-06-01 20:44:29 -0700 3.2.0-dev.734 | 2020-06-01 20:44:29 -0700
* Add missing include in util.cc (Jon Siwek, Corelight) * Add missing include in util.cc (Jon Siwek, Corelight)

View file

@ -1 +1 @@
3.2.0-dev.734 3.2.0-dev.735

@ -1 +1 @@
Subproject commit 2bad9bdd690112d65cc4e1720d3d800ebc5c42ce Subproject commit 8bba3c45c85d99752dc6f8da9b40b768e3c39804

View file

@ -4,4 +4,5 @@ set -e
set -x set -x
./configure ${ZEEK_CI_CONFIGURE_FLAGS} ./configure ${ZEEK_CI_CONFIGURE_FLAGS}
cd build
make -j ${ZEEK_CI_CPUS} make -j ${ZEEK_CI_CPUS}