2022-06-01 18:22:49 +00:00
|
|
|
image: node:18
|
2020-04-14 18:07:40 +00:00
|
|
|
|
|
|
|
variables:
|
|
|
|
NODE_ENV: test
|
|
|
|
|
2022-06-18 00:02:58 +00:00
|
|
|
cache: &cache
|
2021-08-23 19:36:14 +00:00
|
|
|
key:
|
|
|
|
files:
|
|
|
|
- yarn.lock
|
|
|
|
paths:
|
2022-05-17 11:39:59 +00:00
|
|
|
- node_modules/
|
2022-06-18 00:02:58 +00:00
|
|
|
policy: pull
|
2020-04-14 23:00:02 +00:00
|
|
|
|
2020-04-14 18:07:40 +00:00
|
|
|
stages:
|
2022-05-25 15:00:28 +00:00
|
|
|
- deps
|
2020-04-14 18:07:40 +00:00
|
|
|
- test
|
2020-08-30 18:59:39 +00:00
|
|
|
- deploy
|
2020-04-14 18:07:40 +00:00
|
|
|
|
2022-05-25 15:00:28 +00:00
|
|
|
deps:
|
|
|
|
stage: deps
|
|
|
|
script: yarn install --ignore-scripts
|
2022-05-25 19:36:30 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- yarn.lock
|
2022-06-18 00:02:58 +00:00
|
|
|
cache:
|
|
|
|
<<: *cache
|
|
|
|
policy: push
|
2020-04-14 18:07:40 +00:00
|
|
|
|
2022-06-17 23:21:45 +00:00
|
|
|
danger:
|
|
|
|
stage: test
|
2022-06-17 23:23:53 +00:00
|
|
|
script:
|
|
|
|
# https://github.com/danger/danger-js/issues/1029#issuecomment-998915436
|
|
|
|
- export CI_MERGE_REQUEST_IID=${CI_OPEN_MERGE_REQUESTS#*!}
|
|
|
|
- npx danger ci
|
2022-06-19 19:13:35 +00:00
|
|
|
allow_failure: true
|
2022-06-17 23:21:45 +00:00
|
|
|
|
2020-04-14 18:07:40 +00:00
|
|
|
lint-js:
|
2022-05-25 14:58:19 +00:00
|
|
|
stage: test
|
2022-04-04 15:50:14 +00:00
|
|
|
script: yarn lint:js
|
2021-08-22 21:17:31 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- "**/*.js"
|
2022-03-18 20:36:15 +00:00
|
|
|
- "**/*.jsx"
|
|
|
|
- "**/*.ts"
|
|
|
|
- "**/*.tsx"
|
2021-08-22 21:17:31 +00:00
|
|
|
- ".eslintignore"
|
|
|
|
- ".eslintrc.js"
|
2020-04-14 18:07:40 +00:00
|
|
|
|
|
|
|
lint-sass:
|
2022-05-25 14:58:19 +00:00
|
|
|
stage: test
|
2022-04-04 15:50:14 +00:00
|
|
|
script: yarn lint:sass
|
2021-08-22 21:17:31 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- "**/*.scss"
|
|
|
|
- "**/*.css"
|
|
|
|
- ".stylelintrc.json"
|
2020-04-14 18:07:40 +00:00
|
|
|
|
2020-04-14 23:00:02 +00:00
|
|
|
jest:
|
|
|
|
stage: test
|
2022-07-06 16:23:35 +00:00
|
|
|
script: yarn test:coverage --runInBand
|
2021-08-22 21:17:31 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- "**/*.js"
|
|
|
|
- "**/*.json"
|
|
|
|
- "app/soapbox/**/*"
|
|
|
|
- "webpack/**/*"
|
2022-05-25 19:36:30 +00:00
|
|
|
- "custom/**/*"
|
2021-08-22 21:17:31 +00:00
|
|
|
- "jest.config.js"
|
|
|
|
- "package.json"
|
|
|
|
- "yarn.lock"
|
2022-06-13 19:10:32 +00:00
|
|
|
- ".gitlab-ci.yml"
|
2022-06-13 18:57:10 +00:00
|
|
|
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
|
2022-06-13 17:15:07 +00:00
|
|
|
artifacts:
|
|
|
|
reports:
|
2022-06-13 18:26:51 +00:00
|
|
|
junit: junit.xml
|
2022-06-13 17:15:07 +00:00
|
|
|
coverage_report:
|
|
|
|
coverage_format: cobertura
|
|
|
|
path: .coverage/cobertura-coverage.xml
|
2020-04-14 18:16:08 +00:00
|
|
|
|
2022-05-20 23:47:49 +00:00
|
|
|
nginx-test:
|
|
|
|
stage: test
|
|
|
|
image: nginx:latest
|
|
|
|
before_script: cp installation/mastodon.conf /etc/nginx/conf.d/default.conf
|
|
|
|
script: nginx -t
|
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- "installation/mastodon.conf"
|
|
|
|
|
2020-04-14 18:20:07 +00:00
|
|
|
build-production:
|
2022-05-25 15:15:41 +00:00
|
|
|
stage: test
|
2020-04-26 17:49:20 +00:00
|
|
|
script: yarn build
|
2020-04-14 18:20:07 +00:00
|
|
|
variables:
|
|
|
|
NODE_ENV: production
|
2020-04-14 18:07:40 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2022-05-25 15:15:41 +00:00
|
|
|
- static
|
2020-04-14 18:07:40 +00:00
|
|
|
|
2020-08-30 18:59:39 +00:00
|
|
|
docs-deploy:
|
|
|
|
stage: deploy
|
|
|
|
image: alpine:latest
|
2020-08-29 21:51:17 +00:00
|
|
|
before_script:
|
|
|
|
- apk add curl
|
|
|
|
script:
|
2020-08-30 18:49:42 +00:00
|
|
|
- curl -X POST -F"token=$CI_JOB_TOKEN" -F'ref=master' https://gitlab.com/api/v4/projects/15685485/trigger/pipeline
|
2020-08-29 18:18:51 +00:00
|
|
|
only:
|
2021-08-22 21:17:31 +00:00
|
|
|
refs:
|
|
|
|
- develop
|
|
|
|
changes:
|
|
|
|
- "docs/**/*"
|
2020-08-29 18:18:51 +00:00
|
|
|
|
2020-06-12 06:02:18 +00:00
|
|
|
# Supposed to fail when translations are outdated, instead always passes
|
|
|
|
#
|
|
|
|
# i18n:
|
|
|
|
# stage: build
|
|
|
|
# script: yarn manage:translations
|
|
|
|
# variables:
|
|
|
|
# NODE_ENV: development
|
|
|
|
# before_script:
|
|
|
|
# - yarn
|
|
|
|
# - yarn build
|
2021-08-22 04:48:29 +00:00
|
|
|
|
2022-05-19 02:48:16 +00:00
|
|
|
review:
|
|
|
|
stage: deploy
|
|
|
|
environment:
|
|
|
|
name: review/$CI_COMMIT_REF_NAME
|
|
|
|
url: https://$CI_COMMIT_REF_SLUG.git.soapbox.pub
|
|
|
|
script:
|
|
|
|
- npx -y surge static $CI_COMMIT_REF_SLUG.git.soapbox.pub
|
2022-05-25 15:23:55 +00:00
|
|
|
allow_failure: true
|
2022-05-19 02:48:16 +00:00
|
|
|
|
2021-08-22 04:48:29 +00:00
|
|
|
pages:
|
|
|
|
stage: deploy
|
2021-09-07 04:59:19 +00:00
|
|
|
before_script: []
|
2021-08-22 04:48:29 +00:00
|
|
|
script:
|
2021-09-07 04:59:19 +00:00
|
|
|
# artifacts are kept between jobs
|
2021-09-07 03:48:42 +00:00
|
|
|
- mv static public
|
2021-09-07 04:56:29 +00:00
|
|
|
variables:
|
|
|
|
NODE_ENV: production
|
2021-08-22 04:48:29 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
2021-08-22 21:17:31 +00:00
|
|
|
refs:
|
|
|
|
- develop
|
2022-09-04 20:37:34 +00:00
|
|
|
|
|
|
|
docker:
|
2022-09-04 20:58:48 +00:00
|
|
|
stage: deploy
|
2022-09-04 20:37:34 +00:00
|
|
|
image: docker:20.10.17
|
|
|
|
services:
|
2022-09-04 20:58:48 +00:00
|
|
|
- docker:20.10.17-dind
|
2022-10-09 16:33:10 +00:00
|
|
|
tags:
|
|
|
|
- dind
|
2022-09-04 20:37:34 +00:00
|
|
|
# https://medium.com/devops-with-valentine/how-to-build-a-docker-image-and-push-it-to-the-gitlab-container-registry-from-a-gitlab-ci-pipeline-acac0d1f26df
|
|
|
|
script:
|
|
|
|
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER $CI_REGISTRY --password-stdin
|
|
|
|
- docker build -t $CI_REGISTRY_IMAGE .
|
|
|
|
- docker push $CI_REGISTRY_IMAGE
|
2022-09-04 20:58:48 +00:00
|
|
|
only:
|
|
|
|
refs:
|
|
|
|
- develop
|