This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
.gitlab-ci.yml
69 lines (58 loc) · 1.91 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
stages:
- test
- build
- s3
- trigger
variables:
IMAGE_BUILD_WEBAPP: $CI_REGISTRY/mattermost/ci/devops-images/mattermost-build-webapp:20220802_node-16.10.0@sha256:3272aa759f10c2ef1719ed08cc82ddb07224bec5be86f09800c72f5e2a623c3d
BUILD: "yes"
TEST: "yes"
include:
- project: mattermost/ci/mattermost-webapp
ref: master
file: private.yml
empty:
stage: test
script:
- echo "empty"
test: #todo check on how to create junit.xml, there currently is none
stage: test
image: ${IMAGE_BUILD_WEBAPP}
cache:
key:
files:
- package.json
prefix: ${CI_COMMIT_REF_SLUG}
paths:
- .npm/
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client git -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY_GITHUB" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan github.com >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
script:
- npm ci --cache .npm --prefer-offline
# For Playwright type check
- (cd e2e/playwright && npm ci --cache .npm --prefer-offline)
# i18n
- cp i18n/en.json /tmp/en.json
- mkdir -p /tmp/fake-mobile-dir/assets/base/i18n/
- echo '{}' > /tmp/fake-mobile-dir/assets/base/i18n/en.json
- npm run mmjstool -- i18n extract-webapp --webapp-dir . --mobile-dir /tmp/fake-mobile-dir
- diff /tmp/en.json i18n/en.json
# Address weblate behavior which does not remove whole translation item when translation string is set to empty
- npm run mmjstool -- i18n clean-empty --webapp-dir . --mobile-dir /tmp/fake-mobile-dir --check
- npm run mmjstool -- i18n check-empty-src --webapp-dir . --mobile-dir /tmp/fake-mobile-dir
- rm -rf tmp
# typescript
- npm run check-types
# lint
- npm run check
# unit tests
- npm run test-ci
timeout: 3 hours
rules:
- if: '$CI_COMMIT_REF_NAME == "master" && $TEST == "yes"'