Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nicholas J Anderson
whats-open-web
Commits
38501c5f
Commit
38501c5f
authored
Jan 17, 2018
by
Nicholas J Anderson
Browse files
Merge branch 'ci-api' into 'master'
Accept build variable to change the API base URL. See merge request
!5
parents
32909fee
5211b79d
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
38501c5f
image
:
node:6.5.0
stages
:
-
build
-
deploy
build
:
stage
:
build
variables
:
HOMEPAGE
:
"
https://cefaoycoympc.srct.gmu.edu
/"
API_GET_FACILITIES
:
"
https://api.srct.gmu.edu/whatsopen/v2/facilities
/"
script
:
-
npm install -g yarn
-
>
node -e "require('fs').writeFileSync('./package.json', JSON.stringify(Object.assign(require('./package.json'), {'homepage': process.env.HOMEPAGE}), null, 2));"
sed "s|^const API_GET_FACILITIES .*|const API_GET_FACILITIES = '$API_GET_FACILITIES';|" -i src/actions/api.js
-
yarn install
-
CI=false npm run build
artifacts
:
paths
:
-
build
deploy_staging
:
stage
:
deploy
script
:
echo "Deploy bot awayyyyy"
environment
:
name
:
staging
url
:
https://whatsopen.gmu.io
only
:
-
master
deploy_production
:
stage
:
deploy
script
:
echo "Deploy bot awayyyyy"
environment
:
name
:
production
url
:
https://whatsopen.gmu.edu
when
:
manual
only
:
-
master
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment