mirror of https://github.com/openXC7/prjxray.git
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:
parent
e66cdef8a4
commit
820ea7703f
|
|
@ -6,6 +6,8 @@ action {
|
||||||
define_artifacts {
|
define_artifacts {
|
||||||
regex: "**/*result*.xml"
|
regex: "**/*result*.xml"
|
||||||
regex: "**/build/*.log"
|
regex: "**/build/*.log"
|
||||||
|
regex: "**/logs/*.log"
|
||||||
|
regex: "**/logs/*.xml"
|
||||||
regex: "**/build/**"
|
regex: "**/build/**"
|
||||||
regex: "**/diff.*"
|
regex: "**/diff.*"
|
||||||
regex: "**/database/**"
|
regex: "**/database/**"
|
||||||
|
|
|
||||||
|
|
@ -46,9 +46,9 @@ echo "----------------------------------------"
|
||||||
echo "----------------------------------------"
|
echo "----------------------------------------"
|
||||||
|
|
||||||
# Run the fuzzers
|
# Run the fuzzers
|
||||||
export MAX_VIVADO_PROCESS=$CORES
|
export MAX_VIVADO_PROCESS=$((CORES/2 < 20 ? CORES/2 : 20))
|
||||||
set -x
|
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
|
set +x
|
||||||
echo "----------------------------------------"
|
echo "----------------------------------------"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue