hubl/.gitlab-ci.yml

150 lines
2.5 KiB
YAML
Raw Normal View History

2020-05-19 13:13:30 +00:00
# workflow
stages:
2020-05-19 13:13:30 +00:00
- build
- test
- integration
- acceptance
2020-04-03 18:02:49 +00:00
- release
- deployment
2020-05-19 13:13:30 +00:00
# default image for jobs
default:
2021-02-23 21:05:20 +00:00
image: node:14
2020-05-19 13:13:30 +00:00
# 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/
2021-01-29 15:04:20 +00:00
except:
- tags
2021-04-13 16:41:29 +00:00
- feature/ansible
2020-05-19 13:13:30 +00:00
tags:
- test
## TESTING ##
2020-05-19 13:13:30 +00:00
test:e2e:
stage: test
2020-11-26 22:33:47 +00:00
image: cypress/included:5.6.0
2020-05-19 13:13:30 +00:00
services:
2021-02-24 10:36:41 +00:00
- name: ${CI_REGISTRY_IMAGE}/djangoldp:latest
2020-05-19 13:13:30 +00:00
before_script:
# install missing dependencies
- npm install -g sirv-cli
- npm install cypress-localstorage-commands
2020-05-19 13:13:30 +00:00
# making sure the process is orphan
- sirv dist --port 3000 > /dev/null 2>&1 &
script:
- cypress run -e CYPRESS_baseUrl=http://localhost:3000
2021-01-29 15:04:20 +00:00
except:
- tags
2021-04-13 16:41:29 +00:00
- feature/ansible
2020-05-19 13:13:30 +00:00
tags:
- test
## VALIDATION ##
2021-01-14 12:34:33 +00:00
include:
project: infra/gitlab
ref: master
file: templates/deploy.ci.yml
2020-03-19 12:44:10 +00:00
test1:
2021-01-14 12:34:33 +00:00
extends: .ansible
stage: integration
environment:
2021-04-13 16:41:29 +00:00
name: dev/test1
url: https://test1.startinblox.com
2021-04-13 16:41:29 +00:00
variables:
ANSIBLE_INVENTORY: inventory/dev/
only:
2020-03-16 09:50:07 +00:00
- /^feature\/.*/
when: manual
2020-03-19 12:44:10 +00:00
test2:
extends: .ansible
stage: integration
environment:
2021-04-13 16:41:29 +00:00
name: dev/test2
url: https://test2.startinblox.com
2021-04-13 16:41:29 +00:00
variables:
ANSIBLE_INVENTORY: inventory/dev
only:
2020-03-16 09:51:57 +00:00
- /^feature\/.*/
when: manual
2020-03-19 12:44:10 +00:00
test3:
extends: .ansible
stage: integration
environment:
2021-04-13 16:41:29 +00:00
name: dev/test3
url: https://test3.startinblox.com
2021-04-13 16:41:29 +00:00
variables:
ANSIBLE_INVENTORY: inventory/dev
only:
2020-03-16 09:51:57 +00:00
- /^feature\/.*/
when: manual
2020-03-19 12:44:10 +00:00
stg1:
extends: .ansible
stage: acceptance
environment:
2021-04-13 16:41:29 +00:00
name: review/stg1
url: https://stg1.startinblox.com
2021-04-13 16:41:29 +00:00
variables:
ANSIBLE_INVENTORY: inventory/stg
only:
- /^release\/.*/
when: manual
2020-03-19 12:44:10 +00:00
stg2:
extends: .ansible
stage: acceptance
environment:
2021-04-13 16:41:29 +00:00
name: review/stg2
url: https://stg2.startinblox.com
2021-04-13 16:41:29 +00:00
variables:
ANSIBLE_INVENTORY: inventory/stg
only:
- /^release\/.*/
when: manual
2020-04-03 18:02:49 +00:00
## RELEASE TAGGING ##
publish:
stage: release
2021-02-21 15:31:46 +00:00
image: ${CI_REGISTRY}/infra/docker/jsrelease:latest
2020-04-03 18:02:49 +00:00
script:
- semantic-release
only:
- master
tags:
- deploy
## LIVE DEPLOYMENTS ##
2021-01-29 14:12:55 +00:00
hublworld:
extends: .ansible
2021-04-13 16:41:29 +00:00
stage: deployment
variables:
ANSIBLE_INVENTORY: inventory/prd
2021-02-21 16:28:17 +00:00
only:
- master
2020-09-08 10:11:55 +00:00
when: manual