# workflow
stages:
 - build
 - test
 - integration
 - acceptance
 - release
 - deployment

# default image for jobs
default:
  image: node:14

# 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/
  except:
    - tags
  tags:
    - test

## TESTING ##

test:e2e:
  stage: test
  image: cypress/included:5.6.0
  services:
    - 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
  except:
    - tags
  tags:
    - test

## VALIDATION ##

include:
  project: infra/gitlab
  ref: master
  file: templates/deploy.ci.yml

test1:
  extends: .ansible
  stage: integration
  environment:
    name: test1
    url: https://test1.startinblox.com
  only:
    - /^feature\/.*/
  when: manual

test2:
  extends: .ansible
  stage: integration
  environment:
    name: test2
    url: https://test2.startinblox.com
  only:
    - /^feature\/.*/
  when: manual

test3:
  extends: .ansible
  stage: integration
  environment:
    name: test3
    url: https://test3.startinblox.com
  only:
    - /^feature\/.*/
  when: manual

stg1:
  extends: .ansible
  stage: acceptance
  environment:
    name: stg1
    url: https://stg1.startinblox.com
  only:
    - /^release\/.*/
  when: manual

stg2:
  extends: .ansible
  stage: acceptance
  environment:
    name: stg2
    url: https://stg2.startinblox.com
  only:
    - /^release\/.*/
  when: manual

## RELEASE TAGGING ##

publish:
  stage: release
  image: ${CI_REGISTRY}/infra/docker/jsrelease:latest
  script:
    - semantic-release
  only:
    - master
  tags:
    - deploy

## LIVE DEPLOYMENTS ##

hublworld:
  extends: .ansible
  only:
    - master
  when: manual

happydev:
  extends: .ansible
  script:
    - cd /platform
    - echo "$VAULT_KEY" > .vault-password.txt
    - echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
    - ansible-playbook --key-file gitlab.key deploy.yml -t client -l "$CI_JOB_NAME" -e "client_code_version=$CI_COMMIT_SHA"
  only:
    - master
  when: manual