22 lines
599 B
Bash
Executable File
22 lines
599 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# create the different verilator builds
|
|
# argument is the make command string
|
|
|
|
# turn echo on and error on earliest command
|
|
set -ex
|
|
|
|
# get shared variables
|
|
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
source $SCRIPT_DIR/defaults.sh
|
|
|
|
cd $REMOTE_CHIPYARD_DIR
|
|
./scripts/init-submodules-no-riscv-tools.sh --force
|
|
|
|
# Run Firesim Scala Tests
|
|
export FIRESIM_ENV_SOURCED=1;
|
|
export COURSIER_CACHE=$REMOTE_COURSIER_CACHE
|
|
export JVM_MEMORY=10G
|
|
export JAVA_TMP_DIR=$REMOTE_JAVA_TMP_DIR
|
|
make -C $REMOTE_FIRESIM_DIR TARGET_SBT_PROJECT="{file:$REMOTE_CHIPYARD_DIR}firechip" testOnly ${mapping[$1]}
|