Merge pull request #107 from mcronce/csi-1.0-ci

More CI fixes for csi-v1.0
This commit is contained in:
Huamin Chen 2018-12-10 11:13:01 -05:00 committed by GitHub
commit d0715f7c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -23,3 +23,5 @@ deploy:
- provider: script
script:
- ./deploy.sh
on:
all_branches: true

View File

@ -6,9 +6,13 @@ if [ "${TRAVIS_BRANCH}" == 'master' ]; then
elif [ "${TRAVIS_BRANCH}" == 'csi-v1.0' ]; then
export RBD_IMAGE_VERSION='v1.0.0';
export CEPHFS_IMAGE_VERSION='v1.0.0';
else
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting";
exit 0; # Exiting 0 so that this isn't marked as failing
fi;
if [ "${TRAVIS_PULL_REQUEST}" == "false" ] && [ -n "${RBD_IMAGE_VERSION}" ]; then
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
make push-image-rbdplugin push-image-cephfsplugin
fi;