.travis.yml: Do some build (gcc) runs in parallel (-j4)

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13580)
This commit is contained in:
Dr. David von Oheimb 2020-10-10 21:36:47 +02:00
parent 68b9c2cbf7
commit 2cda79fb82

View File

@ -173,6 +173,7 @@ before_script:
fi;
fi
- ./configdata.pm --dump
- export BUILDOPTS="-j4"
- export HARNESS_JOBS=${HARNESS_JOBS:-4}
- cd $top
@ -183,9 +184,9 @@ script:
make="make";
fi
- if [ -n "$GENERATE" ]; then
make2="$make PERL=no-perl";
make2="$make $BUILDOPTS PERL=no-perl";
else
make2="$make";
make2="$make $BUILDOPTS";
fi
- top=${PWD}
- if [ -n "$DESTDIR" ]; then