Remove now-unused build-step scripts

This commit is contained in:
JL102
2023-10-06 19:01:47 -04:00
parent a7993db08e
commit 9b557227a3
3 changed files with 0 additions and 43 deletions

View File

@@ -1,21 +0,0 @@
#!/usr/bin/env bash
# This script is intended to be used as a sub-step of build-setup.sh.
# note: lock file must end in .conda-lock.yml - see https://github.com/conda-incubator/conda-lock/issues/154
set -e
CONDA_REQS=$CYDIR/conda-reqs
CONDA_LOCK_REQS=$CONDA_REQS/conda-lock-reqs
# must match with the file generated by generate-conda-lockfile.sh
LOCKFILE=$CONDA_LOCK_REQS/conda-requirements-$TOOLCHAIN_TYPE-linux-64.conda-lock.yml
if [ "$USE_UNPINNED_DEPS" = true ]; then
# auto-gen the lockfiles
$CYDIR/scripts/generate-conda-lockfiles.sh
fi
# use conda-lock to create env
conda-lock install --conda $(which conda) -p $CYDIR/.conda-env $LOCKFILE
source $CYDIR/.conda-env/etc/profile.d/conda.sh
conda activate $CYDIR/.conda-env

View File

@@ -1,10 +0,0 @@
#!/usr/bin/env bash
# This script is intended to be used as a sub-step of build-setup.sh.
set -e
pushd $CYDIR/sims/verilator
make launch-sbt SBT_COMMAND=";project chipyard; compile"
make launch-sbt SBT_COMMAND=";project tapeout; compile"
popd

View File

@@ -1,12 +0,0 @@
#!/usr/bin/env bash
# This script is intended to be used as a sub-step of build-setup.sh.
pushd $CYDIR/sims/firesim
(
echo $CYDIR
source sourceme-manager.sh --skip-ssh-setup
pushd sim
make sbt SBT_COMMAND="project {file:$CYDIR}firechip; compile" TARGET_PROJECT=firesim
popd
)
popd