build-arm.sh: fix elapsed time.
This commit is contained in:
parent
f49cd6343a
commit
7683912591
1 changed files with 6 additions and 2 deletions
|
@ -6,6 +6,8 @@ KEY_NAME=debian-arm-us-east-2
|
||||||
SECURITY_GROUP_ID=sg-086ffbadc286c5c00
|
SECURITY_GROUP_ID=sg-086ffbadc286c5c00
|
||||||
ARTIFACTS="${ARTIFACTS:-build-artifacts-$(date +%s)}"
|
ARTIFACTS="${ARTIFACTS:-build-artifacts-$(date +%s)}"
|
||||||
|
|
||||||
|
STARTTIME=$(date +%H:%M)
|
||||||
|
|
||||||
# Spin up an ARM build machine using aws cli, build pandoc, and
|
# Spin up an ARM build machine using aws cli, build pandoc, and
|
||||||
# download the artifact.
|
# download the artifact.
|
||||||
#
|
#
|
||||||
|
@ -96,7 +98,9 @@ scp -i "$HOME/.ssh/$KEY_NAME.pem" -r "admin@$IPADDR:src/pandoc/linux/artifacts"
|
||||||
echo "Artifacts saved in $ARTIFACTS"
|
echo "Artifacts saved in $ARTIFACTS"
|
||||||
ls "$ARTIFACTS"
|
ls "$ARTIFACTS"
|
||||||
|
|
||||||
# Let's see how long this took!
|
ENDTIME=$(date +%H:%M)
|
||||||
uptime
|
|
||||||
|
echo "Started: $STARTTIME"
|
||||||
|
echo "Finished: $ENDTIME"
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue