improve, simplify, misc/jenkins/ build scripts

This commit is contained in:
Nathan Schulte 2022-11-18 19:01:28 -06:00 committed by rusefillc
parent a331cfa2c9
commit 335ad01d01
2 changed files with 3 additions and 5 deletions

View File

@ -11,4 +11,4 @@ rm -rf .dep
bash compile.sh bash compile.sh
ls build ls build
cd .. cd ..
[ -e simulator/build/rusefi_simulator.exe ] || { echo "SIMULATOR COMPILATION FAILED"; exit 1; } [ -e simulator/build/rusefi_simulator.exe ] || [ -e simulator/build/rusefi_simulator ] || { echo "SIMULATOR COMPILATION FAILED"; exit 1; }

View File

@ -57,11 +57,9 @@ cd ..
# At root folder here # At root folder here
bash misc/jenkins/build_java_console.sh bash misc/jenkins/build_java_console.sh || { echo "rusefi_console.jar build FAILED"; exit 1; }
[ -e java_console_binary/rusefi_console.jar ] || { echo "rusefi_console.jar build FAILED"; exit 1; }
bash misc/jenkins/build_simulator.sh bash misc/jenkins/build_simulator.sh || { echo "rusefi_simulator.exe build FAILED"; exit 1; }
[ -e simulator/build/rusefi_simulator.exe ] || { echo "rusefi_simulator.exe build FAILED"; exit 1; }
STM_ARCH="stm32f407" STM_ARCH="stm32f407"
TIMESTAMP=$(date "+%Y%m%d_%H%M%S") TIMESTAMP=$(date "+%Y%m%d_%H%M%S")