mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 06:57:49 +00:00
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/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')
|
|
|
|
# Try pulling the old build first for caching purposes.
|
|
docker pull resin/${ARCH}-supervisor:${ESCAPED_BRANCH_NAME} || docker pull resin/${ARCH}-supervisor:master || true
|
|
|
|
# Test the gosuper
|
|
make SUPERVISOR_VERSION=${VERSION} JOB_NAME=${JOB_NAME} test-gosuper
|
|
|
|
MAKE_ARGS="ARCH=${ARCH} \
|
|
JOB_NAME=${JOB_NAME} \
|
|
BASE_DISTRO=${BASE_DISTRO} \
|
|
PUBNUB_SUBSCRIBE_KEY=${PUBNUB_SUBSCRIBE_KEY} \
|
|
PUBNUB_PUBLISH_KEY=${PUBNUB_PUBLISH_KEY} \
|
|
MIXPANEL_TOKEN=${MIXPANEL_TOKEN}"
|
|
|
|
make ${MAKE_ARGS} \
|
|
SUPERVISOR_VERSION=${ESCAPED_BRANCH_NAME} \
|
|
DEPLOY_REGISTRY= \
|
|
deploy
|
|
|
|
make ${MAKE_ARGS} \
|
|
SUPERVISOR_VERSION=${VERSION} \
|
|
DEPLOY_REGISTRY= \
|
|
deploy
|
|
|
|
make ${MAKE_ARGS} \
|
|
SUPERVISOR_VERSION=${ESCAPED_BRANCH_NAME} \
|
|
DEPLOY_REGISTRY=registry.resinstaging.io/ \
|
|
deploy
|
|
|
|
make ${MAKE_ARGS} \
|
|
SUPERVISOR_VERSION=${VERSION} \
|
|
DEPLOY_REGISTRY=registry.resinstaging.io/ \
|
|
deploy
|