]> Untitled Git - lemmy.git/blob - .drone.yml
Merge branch 'main' of https://github.com/lemmynet/lemmy
[lemmy.git] / .drone.yml
1 ---
2 kind: pipeline
3 name: amd64
4
5 platform:
6   os: linux
7   arch: amd64
8
9 steps:
10
11   - name: prepare repo
12     image: ekidd/rust-musl-builder:1.51.0
13     user: root
14     commands:
15       - chown 1000:1000 . -R
16       - git fetch --tags
17
18   - name: check formatting
19     image: rustdocker/rust:nightly
20     commands:
21       - /root/.cargo/bin/cargo fmt -- --check
22
23   - name: cargo clippy
24     image: ekidd/rust-musl-builder:1.51.0
25     commands:
26       - cargo clippy --workspace --tests --all-targets --all-features -- -D warnings -D deprecated -D clippy::perf -D clippy::complexity -D clippy::dbg_macro
27       - cargo clippy --workspace -- -D clippy::unwrap_used
28
29   - name: cargo test
30     image: ekidd/rust-musl-builder:1.51.0
31     environment:
32       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
33       LEMMY_CONFIG_LOCATION: ../../config/config.hjson
34       RUST_BACKTRACE: 1
35       RUST_TEST_THREADS: 1
36     commands:
37       - sudo apt-get update
38       - sudo apt-get -y install --no-install-recommends postgresql-client
39       - cargo test --workspace --no-fail-fast
40
41   - name: cargo build
42     image: ekidd/rust-musl-builder:1.51.0
43     commands:
44       - cargo build
45       - mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
46
47   - name: run federation tests
48     image: node:alpine
49     environment:
50       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
51       DO_WRITE_HOSTS_FILE: 1
52     commands:
53       - apk add bash curl postgresql-client
54       - bash api_tests/prepare-drone-federation-test.sh
55       - cd api_tests/
56       - yarn
57       - yarn api-test
58
59   - name: publish dev docker image
60     image: plugins/docker
61     settings:
62       dockerfile: docker/prod/Dockerfile
63       username:
64         from_secret: docker_username
65       password:
66         from_secret: docker_password
67       repo: dessalines/lemmy
68       tags:
69         - dev-linux-amd64
70     when:
71       ref:
72         - refs/heads/main
73
74   - name: publish dev docker manifest
75     image: plugins/manifest
76     settings:
77       username:
78         from_secret: docker_username
79       password:
80         from_secret: docker_password
81       target: "dessalines/lemmy:dev"
82       template: "dessalines/lemmy:dev-OS-ARCH"
83       platforms:
84         - linux/amd64
85         - linux/arm64
86       ignore_missing: true
87     when:
88       ref:
89         - refs/heads/main
90
91   - name: publish release docker image
92     image: plugins/docker
93     settings:
94       dockerfile: docker/prod/Dockerfile
95       username:
96         from_secret: docker_username
97       password:
98         from_secret: docker_password
99       repo: dessalines/lemmy
100       auto_tag: true
101       auto_tag_suffix: linux-amd64
102     when:
103       ref:
104         - refs/tags/*
105
106   - name: publish release docker manifest
107     image: plugins/manifest
108     settings: 
109       username:
110         from_secret: docker_username
111       password:
112         from_secret: docker_password
113       target: "dessalines/lemmy:${DRONE_TAG}"
114       template: "dessalines/lemmy:${DRONE_TAG}-OS-ARCH"
115       platforms:
116         - linux/amd64
117         - linux/arm64
118       ignore_missing: true
119     when:
120       ref:
121         - refs/tags/*
122
123   # using https://github.com/pksunkara/cargo-workspaces
124   - name: publish to crates.io
125     image: rust:1
126     environment:
127       CARGO_TOKEN:
128         from_secret: cargo_api_token
129     commands:
130       - cargo install cargo-workspaces
131       - cp -r migrations crates/db_queries/
132       - cargo login "$CARGO_TOKEN"
133       - cargo workspaces publish --from-git --allow-dirty --allow-branch "${DRONE_TAG}" --yes custom "${DRONE_TAG}"
134     when:
135       ref:
136         - refs/tags/*
137
138 services:
139   - name: database
140     image: postgres:12-alpine
141     environment:
142       POSTGRES_USER: lemmy
143       POSTGRES_PASSWORD: password
144
145 ---
146 kind: pipeline
147 name: arm64
148
149 platform:
150   os: linux
151   arch: arm64
152
153 steps:
154
155   - name: prepare repo
156     image: rust:1-slim
157     user: root
158     commands:
159       - chown 1000:1000 . -R
160       - apt update
161       - apt install --no-install-recommends --yes git
162       - git fetch --tags
163
164   - name: cargo test
165     image: rust:1-slim
166     environment:
167       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
168       LEMMY_CONFIG_LOCATION: ../../config/config.hjson
169       RUST_BACKTRACE: 1
170       RUST_TEST_THREADS: 1
171     commands:
172       - apt-get update
173       - apt-get -y install --no-install-recommends postgresql-client libssl-dev pkg-config libpq-dev
174       - cargo test --workspace --no-fail-fast
175       - cargo build
176
177   # Using Debian here because there seems to be no official Alpine-based Rust docker image for ARM.
178   - name: cargo build
179     image: rust:1-slim
180     commands:
181       - apt-get update
182       - apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev
183       - cargo build
184       - mv target/debug/lemmy_server target/lemmy_server
185
186   - name: run federation tests
187     image: node:16-slim
188     environment:
189       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
190       DO_WRITE_HOSTS_FILE: 1
191     commands:
192       - mkdir -p /usr/share/man/man1 /usr/share/man/man7
193       - apt-get update
194       - apt-get -y install --no-install-recommends bash curl libssl-dev pkg-config libpq-dev postgresql-client libc6-dev
195       - bash api_tests/prepare-drone-federation-test.sh
196       - cd api_tests/
197       - yarn
198       - yarn api-test
199
200   - name: publish dev docker image
201     image: plugins/docker
202     settings:
203       dockerfile: docker/prod/Dockerfile.arm
204       username:
205         from_secret: docker_username
206       password:
207         from_secret: docker_password
208       repo: dessalines/lemmy
209       tags:
210         - dev-linux-arm64
211     when:
212       ref:
213         - refs/heads/main
214
215   - name: publish dev docker manifest
216     image: plugins/manifest
217     settings:
218       username:
219         from_secret: docker_username
220       password:
221         from_secret: docker_password
222       target: "dessalines/lemmy:dev"
223       template: "dessalines/lemmy:dev-OS-ARCH"
224       platforms:
225         - linux/amd64
226         - linux/arm64
227       ignore_missing: true
228     when:
229       ref:
230         - refs/heads/main
231
232   - name: publish release docker image
233     image: plugins/docker
234     settings:
235       dockerfile: docker/prod/Dockerfile.arm
236       username:
237         from_secret: docker_username
238       password:
239         from_secret: docker_password
240       repo: dessalines/lemmy
241       auto_tag: true
242       auto_tag_suffix: linux-arm64
243     when:
244       ref:
245         - refs/tags/*
246
247   - name: publish release docker manifest
248     image: plugins/manifest
249     settings: 
250       username:
251         from_secret: docker_username
252       password:
253         from_secret: docker_password
254       target: "dessalines/lemmy:${DRONE_TAG}"
255       template: "dessalines/lemmy:${DRONE_TAG}-OS-ARCH"
256       platforms:
257         - linux/amd64
258         - linux/arm64
259       ignore_missing: true
260     when:
261       ref:
262         - refs/tags/*
263
264 services:
265   - name: database
266     image: postgres:12-alpine
267     environment:
268       POSTGRES_USER: lemmy
269       POSTGRES_PASSWORD: password