build: move iteration count to ci-build script.

awsm
Samy Al Bahra 6 years ago
parent 055a13c180
commit 85709d0bc2

@ -24,6 +24,6 @@ steps:
image: gcc image: gcc
pull: true pull: true
commands: commands:
- export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24"
- ./tools/ci-build.sh --cores=4 - ./tools/ci-build.sh --cores=4
- make check - make check

@ -4,7 +4,10 @@
############################################################################## ##############################################################################
set -x set -x
export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24"
./configure $@ ./configure $@
if [ `uname -s` = "FreeBSD" ]; then if [ `uname -s` = "FreeBSD" ]; then
make -j $(sysctl -n hw.ncpu) make -j $(sysctl -n hw.ncpu)
else else

Loading…
Cancel
Save