4e1148772d5758eabec18e28e6328cb31eb5f11c
[akkoma] / .gitlab-ci.yml
1 image: elixir:1.8.1
2
3 variables:
4 POSTGRES_DB: pleroma_test
5 POSTGRES_USER: postgres
6 POSTGRES_PASSWORD: postgres
7 DB_HOST: postgres
8 MIX_ENV: test
9
10 cache:
11 key: ${CI_COMMIT_REF_SLUG}
12 paths:
13 - deps
14 - _build
15 stages:
16 - build
17 - test
18 - deploy
19 - release
20
21 before_script:
22 - mix local.hex --force
23 - mix local.rebar --force
24
25 build:
26 stage: build
27 script:
28 - mix deps.get
29 - mix compile --force
30
31 docs-build:
32 stage: build
33 only:
34 - master@pleroma/pleroma
35 - develop@pleroma/pleroma
36 variables:
37 MIX_ENV: dev
38 script:
39 - mix deps.get
40 - mix compile
41 - mix docs
42 artifacts:
43 paths:
44 - priv/static/doc
45
46
47 unit-testing:
48 stage: test
49 services:
50 - name: lainsoykaf/postgres-with-rum
51 alias: postgres
52 command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
53 script:
54 - mix deps.get
55 - mix ecto.create
56 - mix ecto.migrate
57 - mix coveralls --trace --preload-modules
58
59 unit-testing-rum:
60 stage: test
61 services:
62 - name: lainsoykaf/postgres-with-rum
63 alias: postgres
64 command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
65 variables:
66 RUM_ENABLED: "true"
67 script:
68 - mix deps.get
69 - mix ecto.create
70 - mix ecto.migrate
71 - "mix ecto.migrate --migrations-path priv/repo/optional_migrations/rum_indexing/"
72 - mix test --trace --preload-modules
73
74 lint:
75 stage: test
76 script:
77 - mix format --check-formatted
78
79 analysis:
80 stage: test
81 script:
82 - mix deps.get
83 - mix credo --strict --only=warnings,todo,fixme,consistency,readability
84
85 docs-deploy:
86 stage: deploy
87 image: alpine:3.9
88 only:
89 - master@pleroma/pleroma
90 - develop@pleroma/pleroma
91 before_script:
92 - apk update && apk add openssh-client rsync
93 script:
94 - mkdir -p ~/.ssh
95 - echo "${SSH_HOST_KEY}" > ~/.ssh/known_hosts
96 - eval $(ssh-agent -s)
97 - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
98 - rsync -hrvz --delete -e "ssh -p ${SSH_PORT}" priv/static/doc/ "${SSH_USER_HOST_LOCATION}/${CI_COMMIT_REF_NAME}"
99
100 review_app:
101 image: alpine:3.9
102 stage: deploy
103 before_script:
104 - apk update && apk add openssh-client git
105 when: manual
106 environment:
107 name: review/$CI_COMMIT_REF_NAME
108 url: https://$CI_ENVIRONMENT_SLUG.pleroma.online/
109 on_stop: stop_review_app
110 only:
111 - branches
112 except:
113 - master
114 - develop
115 script:
116 - echo "$CI_ENVIRONMENT_SLUG"
117 - mkdir -p ~/.ssh
118 - eval $(ssh-agent -s)
119 - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
120 - ssh-keyscan -H "pleroma.online" >> ~/.ssh/known_hosts
121 - (ssh -t dokku@pleroma.online -- apps:create "$CI_ENVIRONMENT_SLUG") || true
122 - ssh -t dokku@pleroma.online -- config:set "$CI_ENVIRONMENT_SLUG" APP_NAME="$CI_ENVIRONMENT_SLUG" APP_HOST="$CI_ENVIRONMENT_SLUG.pleroma.online" MIX_ENV=dokku
123 - (ssh -t dokku@pleroma.online -- postgres:create $(echo $CI_ENVIRONMENT_SLUG | sed -e 's/-/_/g')_db) || true
124 - (ssh -t dokku@pleroma.online -- postgres:link $(echo $CI_ENVIRONMENT_SLUG | sed -e 's/-/_/g')_db "$CI_ENVIRONMENT_SLUG") || true
125 - (ssh -t dokku@pleroma.online -- certs:add "$CI_ENVIRONMENT_SLUG" /home/dokku/server.crt /home/dokku/server.key) || true
126 - git push -f dokku@pleroma.online:$CI_ENVIRONMENT_SLUG $CI_COMMIT_SHA:refs/heads/master
127
128 stop_review_app:
129 image: alpine:3.9
130 stage: deploy
131 before_script:
132 - apk update && apk add openssh-client git
133 when: manual
134 environment:
135 name: review/$CI_COMMIT_REF_NAME
136 action: stop
137 script:
138 - echo "$CI_ENVIRONMENT_SLUG"
139 - mkdir -p ~/.ssh
140 - eval $(ssh-agent -s)
141 - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
142 - ssh-keyscan -H "pleroma.online" >> ~/.ssh/known_hosts
143 - ssh -t dokku@pleroma.online -- --force apps:destroy "$CI_ENVIRONMENT_SLUG"
144 - ssh -t dokku@pleroma.online -- --force postgres:destroy $(echo $CI_ENVIRONMENT_SLUG | sed -e 's/-/_/g')_db
145
146 # TODO: Restrict to master and develop
147
148 amd64:
149 stage: release
150 # TODO: Replace with upstream image when 1.9.0 comes out
151 image: rinpatch/elixir:1.9.0-rc.0
152 only: &release-only
153 - master@pleroma/pleroma
154 - develop@pleroma/pleroma
155 - feature/ci-release-build@pleroma/pleroma
156 artifacts: &release-artifacts
157 name: "pleroma-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA-$CI_JOB_NAME"
158 paths:
159 - release/*
160 cache: &release-cache
161 key: $CI_COMMIT_REF_NAME-$CI_JOB_NAME
162 paths:
163 - deps
164 variables: &release-variables
165 MIX_ENV: prod
166 before_script: &before-release
167 - echo "import Mix.Config" > config/prod.secret.exs
168 - mix local.hex --force
169 - mix local.rebar --force
170 script: &release
171 - mix deps.get --only prod
172 - mkdir release
173 - mix release --path release
174
175
176 amd64-musl:
177 stage: release
178 artifacts: *release-artifacts
179 only: *release-only
180 # TODO: Replace with upstream image when 1.9.0 comes out
181 image: rinpatch/elixir:1.9.0-rc.0-alpine
182 cache: *release-cache
183 variables: *release-variables
184 before_script: &before-release-musl
185 - apk add git gcc g++ musl-dev make
186 - echo "import Mix.Config" > config/prod.secret.exs
187 - mix local.hex --force
188 - mix local.rebar --force
189 script: *release
190
191 arm:
192 stage: release
193 artifacts: *release-artifacts
194 only: *release-only
195 tags:
196 - arm32
197 # TODO: Replace with upstream image when 1.9.0 comes out
198 image: rinpatch/elixir:1.9.0-rc.0-arm
199 cache: *release-cache
200 variables: *release-variables
201 before_script: *before-release
202 script: *release
203
204 arm-musl:
205 stage: release
206 artifacts: *release-artifacts
207 only: *release-only
208 tags:
209 - arm32
210 # TODO: Replace with upstream image when 1.9.0 comes out
211 image: rinpatch/elixir:1.9.0-rc.0-arm-alpine
212 cache: *release-cache
213 variables: *release-variables
214 before_script: *before-release-musl
215 script: *release
216
217 arm64:
218 stage: release
219 artifacts: *release-artifacts
220 only: *release-only
221 tags:
222 - arm
223 # TODO: Replace with upstream image when 1.9.0 comes out
224 image: rinpatch/elixir:1.9.0-rc.0-arm64
225 cache: *release-cache
226 variables: *release-variables
227 before_script: *before-release
228 script: *release
229
230 arm64-musl:
231 stage: release
232 artifacts: *release-artifacts
233 only: *release-only
234 tags:
235 - arm
236 # TODO: Replace with upstream image when 1.9.0 comes out
237 image: rinpatch/elixir:1.9.0-rc.0-arm64-alpine
238 cache: *release-cache
239 variables: *release-variables
240 before_script: *before-release-musl
241 script: *release