mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-06 15:31:05 +02:00
27 lines
795 B
Bash
Executable File
27 lines
795 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
# Pull Request image tag format: PR00
|
|
if [ "${TRAVIS_EVENT_TYPE}" = "pull_request" ]; then
|
|
PR_USER=$(echo "$TRAVIS_PULL_REQUEST_SLUG" | sed -e 's/\/.*//')
|
|
if [ "$PR_USER" != "cloudnativelabs" ]; then
|
|
echo "Not building/pushing PR $TRAVIS_PULL_REQUEST since only the cloudnativelabs user can access docker hub credentials"
|
|
exit 0
|
|
fi
|
|
echo "Building/pushing PR$TRAVIS_PULL_REQUEST from $PR_USER"
|
|
make push IMG_TAG="PR$TRAVIS_PULL_REQUEST"
|
|
exit 0
|
|
fi
|
|
|
|
# Release image tag format: v0.0.0 and latest
|
|
if [ -n "$TRAVIS_TAG" ]; then
|
|
echo "Running Release build on Travis"
|
|
make push-release RELEASE_TAG="$TRAVIS_TAG"
|
|
exit 0
|
|
fi
|
|
|
|
# Push image tag format: COMMIT
|
|
echo "Running push build on Travis"
|
|
make push
|