Skip to content

Commit 3ab21b2

Browse files
Apply tue-env changes (#30)
* (actions) change default docker image * Remove unnecessary space * (actions) update docker image tags
1 parent 82b59b8 commit 3ab21b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/install.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ echo -e "\e[35m\e[1mBRANCH = ${BRANCH}\e[0m"
4141
echo -e "\e[35m\e[1mSKIPLIST = ${SKIPLIST}\e[0m"
4242

4343
# Set default value for IMAGE_NAME
44-
[ -z "$IMAGE_NAME" ] && IMAGE_NAME='tuerobotics/tue-env'
44+
[ -z "$IMAGE_NAME" ] && IMAGE_NAME='tuerobotics/tue-env-ros-noetic'
4545
echo -e "\e[35m\e[1mIMAGE_NAME = ${IMAGE_NAME}\e[0m"
4646

4747
# Determine docker tag if the same branch exists there
48-
BRANCH_TAG=$(echo "${BRANCH}" | tr '[:upper:]' '[:lower:]' | sed -e 's:/:_:g')
48+
BRANCH_TAG="$(echo "${BRANCH}" | tr '[:upper:]' '[:lower:]' | sed -e 's:/:_:g')-amd64"
4949

5050
# Set the default fallback branch to latest
51-
MASTER_TAG="latest"
51+
MASTER_TAG="latest-amd64"
5252

5353
# Remove any previously started containers if they exist (if not exist, still return true to let the script continue)
5454
docker stop tue-env &> /dev/null || true

.ci/pre_deploy.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ do
1212
# unknown option
1313
if [[ -n "$i" ]]
1414
then
15-
echo -e "\e[35m\e[1mUnknown input argument '$i'. Check CI yaml file \e[0m"
15+
echo -e "\e[35m\e[1mUnknown input argument '$i'. Check CI yaml file\e[0m"
1616
exit 1
1717
fi ;;
1818
esac

0 commit comments

Comments
 (0)