Update CI configuration:

- Log output of run_fuzzer.py
 - Decrease number of processes running for 072 and 074 to lower memory
   load.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2019-02-08 10:55:35 -08:00
parent e66cdef8a4
commit 820ea7703f
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,8 @@ action {
define_artifacts {
regex: "**/*result*.xml"
regex: "**/build/*.log"
regex: "**/logs/*.log"
regex: "**/logs/*.xml"
regex: "**/build/**"
regex: "**/diff.*"
regex: "**/database/**"

View File

@ -46,9 +46,9 @@ echo "----------------------------------------"
echo "----------------------------------------"
# Run the fuzzers
export MAX_VIVADO_PROCESS=$CORES
export MAX_VIVADO_PROCESS=$((CORES/2 < 20 ? CORES/2 : 20))
set -x
script --return --flush --command "make -j $CORES MAX_VIVADO_PROCESS=$CORES" -
script --return --flush --command "make -j $CORES MAX_VIVADO_PROCESS=$MAX_VIVADO_PROCESS" -
set +x
echo "----------------------------------------"