2015-03-31 03:26:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Jenkins build steps
|
|
|
|
VERSION=$(git describe --always --abbrev=6)
|
|
|
|
ESCAPED_BRANCH_NAME=$(echo $sourceBranch | sed 's/[^a-z0-9A-Z_.-]/-/g')
|
|
|
|
|
2015-07-31 16:01:36 +00:00
|
|
|
# Try pulling the old build first for caching purposes.
|
|
|
|
docker pull resin/${ARCH}-supervisor:${ESCAPED_BRANCH_NAME} || docker pull resin/${ARCH}-supervisor:master || true
|
|
|
|
|
2015-03-31 03:26:09 +00:00
|
|
|
# Build the images
|
2015-04-10 14:42:39 +00:00
|
|
|
make SUPERVISOR_VERSION=${ESCAPED_BRANCH_NAME} ARCH=${ARCH} DEPLOY_REGISTRY= deploy
|
|
|
|
make SUPERVISOR_VERSION=${VERSION} ARCH=${ARCH} DEPLOY_REGISTRY= deploy
|