Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function start_arm_instance() {

bash -c 'echo -n "Waiting port 12357 .."; for _ in `seq 1 40`; do echo -n .; sleep 0.25; nc -z localhost 12357 && echo " Open." && exit ; done; echo " Timeout!" >&2; exit 1'

docker buildx rm -f airflow_cache || true
docker buildx rm --force airflow_cache || true
docker buildx create --name airflow_cache
docker buildx create --name airflow_cache --append localhost:12357
docker buildx ls
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/images/ci_stop_arm_instance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ AUTOSSH_LOGFILE="${WORKING_DIR}/autossh.log"

function stop_arm_instance() {
INSTANCE_ID=$(jq < "${INSTANCE_INFO}" ".Instances[0].InstanceId" -r)
docker buildx rm -f airflow_cache || true
docker buildx rm --force airflow_cache || true
aws ec2 terminate-instances --instance-ids "${INSTANCE_ID}"
cat ${AUTOSSH_LOGFILE}

Expand Down