-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
198 lines (184 loc) · 4.93 KB
/
.gitlab-ci.yml
File metadata and controls
198 lines (184 loc) · 4.93 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
stages:
- lint
- build
- test
- publish
include:
- project: code0-tech/development/telescopium
ref: build-branch
file: ci-template.gitlab-ci.yml
.bundle:
image: ruby:3.4.7
before_script:
- bundle install --jobs $(nproc)
.rails:
image: ghcr.io/code0-tech/build-images/ruby-postgres:256.1-ruby-3.4.7-postgres-16.1
before_script:
- cp tooling/pipeline/sagittarius.yml config/sagittarius.yml
- !reference [.bundle, before_script]
services:
- postgres:16.1
variables:
POSTGRES_DB: sagittarius_test
POSTGRES_USER: sagittarius
POSTGRES_PASSWORD: sagittarius
RAILS_ENV: test
rubocop:
extends:
- .bundle
stage: lint
script:
- rubocop_exit_code=0; git_exit_code=0
- bundle exec rubocop -A | tee output || rubocop_exit_code=$?
- git diff --exit-code || git_exit_code=$?
- |
echo -e "\e[0Ksection_start:`date +%s`:glpa_summary\r\e[0KHeader of the summary"
grep -E '[[:digit:]] files inspected, ' output
echo -e "\e[0Ksection_end:`date +%s`:glpa_summary\r\e[0K"
exit $(($rubocop_exit_code + $git_exit_code))
graphql_docs:
extends:
- .rails
stage: lint
script:
- bundle exec rake graphql:compile_docs
- git add docs
- git diff --exit-code --staged
rspec:
extends:
- .rails
stage: test
parallel:
matrix:
- EDITION:
- ce
- ee
variables:
FPROF: '1'
script:
- '[[ "$EDITION" = "ee" ]] || rm -rf extensions/ee/'
- bundle exec rspec --format doc --format RspecJunitFormatter --out rspec.xml | tee output || exit_code=$?
- |
echo -e "\e[0Ksection_start:`date +%s`:glpa_summary\r\e[0KHeader of the summary"
echo "Coverage report available at https://code0-tech.gitlab.io/-/development/sagittarius/-/jobs/$CI_JOB_ID/artifacts/tmp/coverage/index.html"
echo "Test summary available at https://gitlab.com/code0-tech/development/sagittarius/-/pipelines/$CI_PIPELINE_ID/test_report"
grep 'Finished in ' output
grep -E '[[:digit:]]+ examples, ' output
grep -m 1 -E 'Line Coverage:' output
grep 'Time spent in factories' output
echo -e "\e[0Ksection_end:`date +%s`:glpa_summary\r\e[0K"
exit $exit_code
coverage: '/Line Coverage:\s\d+\.\d+%/'
artifacts:
expire_in: 7 days
paths:
- tmp/coverage/index.html
- tmp/coverage/assets/
reports:
junit:
- rspec.xml
db:migrate:
extends:
- .rails
stage: test
script:
- bundle exec rake db:migrate:reset
- git add db
- git diff --exit-code --staged
db:rollback-and-migrate:
extends:
- .rails
stage: test
allow_failure:
exit_codes: 10
script:
- bundle exec rake db:create db:schema:load
- bundle exec rake db:migrate VERSION=20231203194307
- bundle exec rake db:migrate
- git add db
- git diff --exit-code --staged || exit 10
boot:production-mode:
extends:
- .rails
stage: test
parallel:
matrix:
- EDITION:
- ce
- ee
variables:
POSTGRES_DB: sagittarius_production
POSTGRES_USER: sagittarius
POSTGRES_PASSWORD: sagittarius
RAILS_ENV: production
BUNDLE_WITHOUT: 'development:test'
script:
- '[[ "$EDITION" = "ee" ]] || rm -rf extensions/ee/'
- bundle exec rake db:prepare db:seed_fu
- bin/rails s &
- curl --fail -sv --retry 20 --retry-delay 3 --retry-connrefused http://127.0.0.1:3000/health/liveness
npm-types:generate-graphql:
extends:
- .rails
stage: build
script:
- bundle exec rake graphql:types:schema:dump
artifacts:
expire_in: 7 days
paths:
- tmp/schema.graphql
- tmp/schema.json
- tooling/graphql/types/
- VERSION
.npm-types:publish-graphql:
image: node:24.10.0
needs:
- npm-types:generate-graphql
variables:
GIT_STRATEGY: empty
NPM_CONFIG_PROVENANCE: "false"
id_tokens:
NPM_ID_TOKEN:
aud: "npm:registry.npmjs.org"
script:
- cd tooling/graphql/types
- npm ci
- npm run generate
- |
if [[ -n "$CI_COMMIT_TAG" ]]; then
npm version --git-tag-version false $CI_COMMIT_TAG
else
npm version --git-tag-version false $(cat ../../../VERSION)-experimental-$CI_PIPELINE_ID-$CI_COMMIT_SHA
fi
npm-types:publish-graphql-dry-run:
extends:
- .npm-types:publish-graphql
stage: test
script:
- !reference [.npm-types:publish-graphql, script]
- npm publish --dry-run --tag latest
artifacts:
expire_in: 7 days
paths:
- tooling/graphql/types/index.d.ts
rules:
- if: $CI_COMMIT_TAG
when: never
- if: $C0_GH_REF_NAME != "main"
npm-types:publish-graphql:
extends:
- .npm-types:publish-graphql
stage: publish
script:
- !reference [ .npm-types:publish-graphql, script ]
- |
if [[ -n "$CI_COMMIT_TAG" ]]; then
npm publish --tag latest
else
npm publish --tag experimental
fi
rules:
- if: $CI_COMMIT_TAG
- if: $C0_GH_REF_NAME == "main"
when: manual
allow_failure: true