2024-02-13 00:21:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Variables
|
2024-03-09 20:21:04 +00:00
|
|
|
PYTHON_SCRIPT=$HOME/nightly-runs/cvw/bin/ # cvw can be anywhere you would like it. Make sure to point your variable there
|
|
|
|
SETUP_SCRIPT=$HOME/nightly-runs/cvw/ # cvw can be anywhere you would like it. Make sure to point your variable there
|
2024-02-13 00:21:04 +00:00
|
|
|
|
|
|
|
echo "Current directory"
|
|
|
|
pwd
|
|
|
|
|
|
|
|
cd $SETUP_SCRIPT
|
|
|
|
echo "Current directory"
|
|
|
|
pwd
|
|
|
|
|
|
|
|
echo "Sourcing setup_host"
|
2024-03-17 23:58:25 +00:00
|
|
|
source ./setup.sh
|
2024-02-13 00:21:04 +00:00
|
|
|
|
|
|
|
cd $PYTHON_SCRIPT
|
|
|
|
pwd
|
|
|
|
echo "Running python file"
|
2024-07-04 03:42:55 +00:00
|
|
|
$RISCV/riscv-python/bin/python nightly_build.py
|
2024-03-09 20:21:04 +00:00
|
|
|
echo "Finished"
|