Merge pull request #1602 from aledbf/test-variables

Add travis-ci variables [ci skip]
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-10-26 13:39:52 -03:00 committed by GitHub
commit 2d406ce58b
2 changed files with 7 additions and 6 deletions

View file

@ -15,14 +15,15 @@
# limitations under the License.
if ! [ -z $DEBUG ]; then
set -x
fi
echo "COMPONENT: $COMPONENT"
echo "TRAVIS_REPO_SLUG: $TRAVIS_REPO_SLUG"
echo "TRAVIS_PULL_REQUEST: $TRAVIS_PULL_REQUEST"
echo "TRAVIS_EVENT_TYPE: $TRAVIS_EVENT_TYPE"
echo "TRAVIS_PULL_REQUEST_BRANCH: $TRAVIS_PULL_REQUEST_BRANCH"
set -x
fi
set -o errexit
set -o nounset
set -o pipefail

View file

@ -19,7 +19,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $DIR/common.sh
echo "Login to quay.io..."
echo $QUAY_PASSWORD | docker login --username=$QUAY_USERNAME --password-stdin quay.io >/dev/null 2>&1
echo $QUAY_PASSWORD | docker login --username=$QUAY_USERNAME --password-stdin quay.io #>/dev/null 2>&1
case "$COMPONENT" in
"ingress-controller")