2020-10-15 14:46:14 +00:00
|
|
|
image: "node:12-slim"
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
2020-10-15 17:54:03 +00:00
|
|
|
- artifact
|
|
|
|
- release
|
2020-10-15 14:46:14 +00:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
# Install dependencies
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y git python3 build-essential libxtst6
|
|
|
|
|
|
|
|
# Prepare Chrome for puppeteer
|
|
|
|
- apt-get install -y wget gnupg
|
|
|
|
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
|
|
|
|
- sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- npm ci
|
|
|
|
- npm run lint
|
|
|
|
- npm test
|
2020-10-15 17:16:49 +00:00
|
|
|
|
2020-10-15 17:54:03 +00:00
|
|
|
# Release Docker image artifact for easy testing
|
|
|
|
artifact-docker:
|
|
|
|
stage: artifact
|
2020-10-15 17:16:49 +00:00
|
|
|
image: docker:latest
|
|
|
|
services:
|
|
|
|
- docker:dind
|
|
|
|
only:
|
|
|
|
- master
|
2020-10-15 17:24:44 +00:00
|
|
|
before_script: []
|
2020-10-15 17:16:49 +00:00
|
|
|
script:
|
|
|
|
- export IMG_NAME=registry.gitlab.com/timvisee/send:master-$CI_COMMIT_SHA
|
|
|
|
|
|
|
|
# Login in to registry
|
|
|
|
- 'docker login registry.gitlab.com -u $DOCKER_USER -p $DOCKER_PASS'
|
|
|
|
|
2020-10-15 17:54:03 +00:00
|
|
|
# Build and push image, report image name
|
2020-10-15 17:16:49 +00:00
|
|
|
- docker build -t $IMG_NAME .
|
|
|
|
- docker push $IMG_NAME
|
2020-10-15 17:54:03 +00:00
|
|
|
- 'echo Docker image artifact published, available as:'
|
|
|
|
- 'echo " docker pull $IMG_NAME"'
|
|
|
|
|
|
|
|
# Release public Docker image
|
|
|
|
release-docker:
|
|
|
|
stage: release
|
|
|
|
image: docker:latest
|
|
|
|
services:
|
|
|
|
- docker:dind
|
|
|
|
only:
|
|
|
|
- /^v(\d+\.)*\d+$/
|
|
|
|
before_script: []
|
|
|
|
script:
|
|
|
|
- export IMG_NAME=registry.gitlab.com/timvisee/send:$CI_COMMIT_REF_NAME
|
|
|
|
- export IMG_NAME_LATEST=registry.gitlab.com/timvisee/send:latest
|
|
|
|
|
|
|
|
# Login in to registry
|
|
|
|
- 'docker login registry.gitlab.com -u $DOCKER_USER -p $DOCKER_PASS'
|
|
|
|
|
|
|
|
# Build and push image, report image name
|
|
|
|
- docker build -t $IMG_NAME .
|
|
|
|
- docker tag $IMG_NAME $IMG_NAME_LATEST
|
|
|
|
- docker push $IMG_NAME
|
|
|
|
- docker push $IMG_NAME_LATEST
|
|
|
|
- 'echo Docker image artifact published, available as:'
|
|
|
|
- 'echo " docker pull $IMG_NAME_LATEST"'
|
|
|
|
- 'echo " docker pull $IMG_NAME"'
|