Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 8fc8b20

Browse files
mbwhiteSimon Stone
authored and
Simon Stone
committed
resolves #2990 - regexp for the travis branch matching (#2991)
* resolves #2990 - regexp for the travis branch matching Signed-off-by: Matthew B White <[email protected]> * move cf commands to original palce Signed-off-by: Matthew B White <[email protected]>
1 parent 8a05864 commit 8fc8b20

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

.travis/deploy.sh

+15-9
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if [ "${DOCS}" != "" ]; then
5757
else
5858
if [ "${TRAVIS_BRANCH}" = "master" ]; then
5959
DOCS="latest"
60-
elif [ "${TRAVIS_BRANCH}" = "v0.16.x" ]; then
60+
elif [[ "${TRAVIS_BRANCH}" =~ v0\.16\.[0-9]{1,2} ]]; then
6161
DOCS="stable"
6262
fi
6363
fi
@@ -130,6 +130,19 @@ else
130130

131131
# Grab the current version.
132132
export VERSION=$(node -e "console.log(require('${DIR}/package.json').version)")
133+
134+
# process travis environment variables
135+
if [ "${TRAVIS_BRANCH}" = "master" ]; then
136+
PLAYGROUND_SUFFIX="-latest"
137+
WEB_CFG="'{\"webonly\":true, \"analyticsID\" : \"UA-91314349-4\"}'"
138+
elif [[ "${TRAVIS_BRANCH}" =~ v0\.16\.[0-9]{1,2} ]]; then
139+
PLAYGROUND_SUFFIX=""
140+
WEB_CFG="'{\"webonly\":true, \"analyticsID\" : \"UA-91314349-3\"}'"
141+
else
142+
echo "Unkown travis branch"
143+
echo ${TRAVIS_BRANCH}
144+
exit 1
145+
fi
133146

134147
# Publish with latest tag (default). These are release builds.
135148
echo "Pushing with tag latest"
@@ -155,14 +168,6 @@ else
155168

156169
# Push to public Bluemix.
157170
pushd ${DIR}/packages/composer-playground
158-
159-
if [ "${TRAVIS_BRANCH}" = "master" ]; then
160-
PLAYGROUND_SUFFIX="-latest"
161-
WEB_CFG="'{\"webonly\":true, \"analyticsID\" : \"UA-91314349-4\"}'"
162-
elif [ "${TRAVIS_BRANCH}" = "v0.16.x" ]; then
163-
PLAYGROUND_SUFFIX=""
164-
WEB_CFG="'{\"webonly\":true, \"analyticsID\" : \"UA-91314349-3\"}'"
165-
fi
166171
cf login -a https://api.ng.bluemix.net -u ${CF_USERNAME} -p ${CF_PASSWORD} -o ${CF_ORGANIZATION} -s ${CF_SPACE}
167172
cf push composer-playground${PLAYGROUND_SUFFIX} -c "node cli.js" -i 2 -m 128M --no-start
168173
cf set-env composer-playground${PLAYGROUND_SUFFIX} CLIENT_ID ${GH_NEXT_OAUTH_CLIENT_ID}
@@ -171,6 +176,7 @@ else
171176
cf start composer-playground${PLAYGROUND_SUFFIX}
172177
popd
173178

179+
174180
# Configure the Git repository and clean any untracked and unignored build files.
175181
git config user.name "${GH_USER_NAME}"
176182
git config user.email "${GH_USER_EMAIL}"

.travis/script.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,13 @@ if [ "${DOCS}" != "" ]; then
4242
if [ "${TRAVIS_BRANCH}" = "master" ]; then
4343
npm run full:latest
4444
npm run linkcheck:latest
45-
elif [ "${TRAVIS_BRANCH}" = "v0.16.x" ]; then
45+
elif [[ "${TRAVIS_BRANCH}" =~ v0\.16\.[0-9]{1,2} ]]; then
4646
npm run full:stable
4747
npm run linkcheck:stable
48+
else
49+
echo "Unkown travis branch"
50+
echo ${TRAVIS_BRANCH}
51+
exit 1
4852
fi
4953
else
5054
npm run full:unstable

0 commit comments

Comments
 (0)