Skip to content

Commit

Permalink
Do not run serial port install in CI environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisl8 committed Oct 20, 2024
1 parent fafabd7 commit ddd03ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Install_Propeller_Code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ testMake MotorResponseTesting
testMake 2ndBoardCode
testMake Calib

if ! [[ ${DOCKER_TEST_INSTALL=true} == "true" ]]; then # This does not work on Docker
if ! [[ ${DOCKER_TEST_INSTALL} == "true" ]] && ! [[ ${CI} == "true" ]]; then # This does not work on Docker
"${SCRIPT_DIR}/scripts/check_hardware.sh"
cd "${SCRIPT_DIR}/PropellerCodeForArloBot/ROSInterfaceForArloBot/bin"
rm -rf ./*
Expand Down

0 comments on commit ddd03ae

Please sign in to comment.