Reduce number of cores for CI build

This commit is contained in:
Florian Zaruba 2018-02-05 17:34:46 +01:00
parent 0c342be943
commit c2a275e6f1
No known key found for this signature in database
GPG key ID: E742FFE8EC38A792
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ autoconf
mkdir -p build
cd build
../configure --prefix=$ROOT/tmp/riscv-tests/build
make isa -j
make isa -j2
make install
cd isa

View file

@ -12,5 +12,5 @@ cd $ROOT/tmp/riscv-fesvr-$RELEASE
mkdir -p build
cd build
../configure --prefix="$ROOT/tmp"
make -j
make -j2
make install

View file

@ -7,7 +7,7 @@ if [ ! -e "$ROOT/tmp/bin/verilator" ]; then
echo "Installing Verilator"
wget https://www.veripool.org/ftp/verilator-3.918.tgz
tar xzf verilator*.t*gz && cd verilator-*
autoconf && ./configure --prefix="$ROOT/tmp" && make -j && make test && make install
autoconf && ./configure --prefix="$ROOT/tmp" && make -j2 && make test && make install
else
echo "Using Verilator from cached directory."
fi