2016-08-15 20:28:23 +02:00
|
|
|
stages:
|
2016-09-15 21:32:14 +02:00
|
|
|
- build
|
|
|
|
- cleanup_build
|
2016-08-15 20:28:23 +02:00
|
|
|
- deploy
|
2016-09-15 23:40:44 +02:00
|
|
|
# - cleanup
|
2016-08-15 20:28:23 +02:00
|
|
|
|
|
|
|
.run_deploy: &run_deploy
|
|
|
|
script:
|
|
|
|
- chmod +x ./deploy.sh
|
|
|
|
- ./deploy.sh
|
2016-09-21 02:31:42 +02:00
|
|
|
dependencies:
|
|
|
|
- build_job
|
2016-08-15 20:28:23 +02:00
|
|
|
|
2016-09-15 21:32:14 +02:00
|
|
|
build_job:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- npm install
|
2016-09-15 21:43:03 +02:00
|
|
|
- npm run tsc
|
2016-09-15 21:32:14 +02:00
|
|
|
tags:
|
|
|
|
- javascript
|
|
|
|
except:
|
|
|
|
- tags
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- app/*.css
|
|
|
|
- app/*.html
|
|
|
|
- app/*.js
|
|
|
|
- app/*.js.map
|
2016-09-21 01:43:21 +02:00
|
|
|
- app/converter/*.js
|
|
|
|
- app/converter/*.js.map
|
2016-09-21 02:31:42 +02:00
|
|
|
- node_modules/@angular/**
|
2016-09-15 21:32:14 +02:00
|
|
|
- node_modules/core-js/client/shim.js
|
|
|
|
- node_modules/zone.js/dist/zone.js
|
|
|
|
- node_modules/reflect-metadata/Reflect.js
|
|
|
|
- node_modules/systemjs/dist/system.src.js
|
2016-09-21 01:43:21 +02:00
|
|
|
- node_modules/utf8/utf8.js
|
|
|
|
- node_modules/quoted-printable/quoted-printable.js
|
|
|
|
- abeezee-regular.woff
|
|
|
|
- freemono.eot
|
|
|
|
- freemono.svg
|
|
|
|
- freemono.ttf
|
|
|
|
- freemono.woff
|
2016-09-15 21:32:14 +02:00
|
|
|
- index.html
|
|
|
|
- package.json
|
|
|
|
- systemjs.config.js
|
2016-09-21 02:31:42 +02:00
|
|
|
expire_in: 30 min
|
2016-08-15 20:28:23 +02:00
|
|
|
|
2016-09-15 21:32:14 +02:00
|
|
|
cleanup_build_job:
|
|
|
|
stage: cleanup_build
|
|
|
|
script:
|
|
|
|
- rm -rf node_modules
|
|
|
|
- rm -rf typings
|
|
|
|
when: on_failure
|
2016-08-15 20:28:23 +02:00
|
|
|
|
|
|
|
develop:
|
|
|
|
stage: deploy
|
|
|
|
<<: *run_deploy
|
|
|
|
environment: develop
|
|
|
|
except:
|
|
|
|
- tags
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
variables:
|
|
|
|
ENVIRON: develop
|
|
|
|
TARGET: $WWW_DEPLOY_ROOT_DEVELOP
|
|
|
|
|
|
|
|
staging:
|
|
|
|
stage: deploy
|
|
|
|
<<: *run_deploy
|
|
|
|
environment: staging
|
|
|
|
only:
|
|
|
|
- develop
|
|
|
|
variables:
|
|
|
|
ENVIRON: staging
|
|
|
|
TARGET: $WWW_DEPLOY_ROOT_STAGING
|
|
|
|
|
|
|
|
production:
|
|
|
|
stage: deploy
|
|
|
|
<<: *run_deploy
|
|
|
|
environment: production
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
variables:
|
|
|
|
ENVIRON: production
|
|
|
|
TARGET: $WWW_DEPLOY_ROOT_PRODUCTION
|
|
|
|
|
2016-09-15 23:40:44 +02:00
|
|
|
#cleanup_job:
|
|
|
|
# stage: cleanup
|
|
|
|
# script:
|
|
|
|
# - rm -rf node_modules
|
|
|
|
# - rm -rf typings
|
|
|
|
# when: always
|