20 lines
547 B
Bash
Executable File
20 lines
547 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_WORK_DIR/.coursier-cache
|
|
make -C $REMOTE_FIRESIM_DIR JAVA_OPTS="$REMOTE_JAVA_OPTS" SBT_OPTS="$REMOTE_SBT_OPTS" testOnly ${mapping[$1]}
|