Newer
Older
# cache modules between jobs
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm/
## BUILD ##
build:
stage: build
before_script:
- npm ci --cache .npm --prefer-offline --only=production
script:
- cp config.sample.json config.json
- npm run build
artifacts:
when: on_success
expire_in: 1 day
paths:
- dist/
- name: ${CI_REGISTRY_IMAGE}/djangoldp:latest
before_script:
# install missing dependencies
- npm install -g sirv-cli
- npm install cypress-localstorage-commands
# making sure the process is orphan
- sirv dist --port 3000 > /dev/null 2>&1 &
script:
- cypress run -e CYPRESS_baseUrl=http://localhost:3000
include:
project: infra/gitlab
ref: master
file: templates/deploy.ci.yml
name: test1
url: https://test1.startinblox.com
name: test2
url: https://test2.startinblox.com
stage: integration
environment:
name: test3
url: https://test3.startinblox.com
only:
stage: acceptance
environment:
name: stg1
url: https://stg1.startinblox.com
only:
- /^release\/.*/
when: manual
name: stg2
url: https://stg2.startinblox.com
- /^release\/.*/
when: manual
## RELEASE TAGGING ##
publish:
stage: release
image: ${CI_REGISTRY}/infra/docker/jsrelease:latest
script:
- semantic-release
only:
- master
tags:
- deploy