mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 05:07:21 -04:00
Reduce number of cores for CI build
This commit is contained in:
parent
0c342be943
commit
c2a275e6f1
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue