]> Untitled Git - lemmy.git/blob - .drone.yml
Adding release notes.
[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:15-alpine3.12
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 services:
124   - name: database
125     image: postgres:12-alpine
126     environment:
127       POSTGRES_USER: lemmy
128       POSTGRES_PASSWORD: password
129
130 ---
131 kind: pipeline
132 name: arm64
133
134 platform:
135   os: linux
136   arch: arm64
137
138 steps:
139
140   - name: prepare repo
141     image: rust:1.51-slim-buster
142     user: root
143     commands:
144       - chown 1000:1000 . -R
145       - apt update
146       - apt install --no-install-recommends --yes git
147       - git fetch --tags
148
149   - name: cargo test
150     image: rust:1.51-slim-buster
151     environment:
152       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
153       LEMMY_CONFIG_LOCATION: ../../config/config.hjson
154       RUST_BACKTRACE: 1
155       RUST_TEST_THREADS: 1
156     commands:
157       - apt-get update
158       - apt-get -y install --no-install-recommends postgresql-client libssl-dev pkg-config libpq-dev
159       - cargo test --workspace --no-fail-fast
160       - cargo build
161
162   # Using Debian here because there seems to be no official Alpine-based Rust docker image for ARM.
163   - name: cargo build
164     image: rust:1.51-slim-buster
165     commands:
166       - apt-get update
167       - apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev
168       - cargo build
169       - mv target/debug/lemmy_server target/lemmy_server
170
171   - name: run federation tests
172     image: node:15-buster-slim
173     environment:
174       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
175       DO_WRITE_HOSTS_FILE: 1
176     commands:
177       - mkdir -p /usr/share/man/man1 /usr/share/man/man7
178       - apt-get update
179       - apt-get -y install --no-install-recommends bash curl libssl-dev pkg-config libpq-dev postgresql-client libc6-dev
180       - bash api_tests/prepare-drone-federation-test.sh
181       - cd api_tests/
182       - yarn
183       - yarn api-test
184
185   - name: publish dev docker image
186     image: plugins/docker
187     settings:
188       dockerfile: docker/prod/Dockerfile.arm
189       username:
190         from_secret: docker_username
191       password:
192         from_secret: docker_password
193       repo: dessalines/lemmy
194       tags:
195         - dev-linux-arm64
196     when:
197       ref:
198         - refs/heads/main
199
200   - name: publish dev docker manifest
201     image: plugins/manifest
202     settings:
203       username:
204         from_secret: docker_username
205       password:
206         from_secret: docker_password
207       target: "dessalines/lemmy:dev"
208       template: "dessalines/lemmy:dev-OS-ARCH"
209       platforms:
210         - linux/amd64
211         - linux/arm64
212       ignore_missing: true
213     when:
214       ref:
215         - refs/heads/main
216
217   - name: publish release docker image
218     image: plugins/docker
219     settings:
220       dockerfile: docker/prod/Dockerfile.arm
221       username:
222         from_secret: docker_username
223       password:
224         from_secret: docker_password
225       repo: dessalines/lemmy
226       auto_tag: true
227       auto_tag_suffix: linux-arm64
228     when:
229       ref:
230         - refs/tags/*
231
232   - name: publish release docker manifest
233     image: plugins/manifest
234     settings: 
235       username:
236         from_secret: docker_username
237       password:
238         from_secret: docker_password
239       target: "dessalines/lemmy:${DRONE_TAG}"
240       template: "dessalines/lemmy:${DRONE_TAG}-OS-ARCH"
241       platforms:
242         - linux/amd64
243         - linux/arm64
244       ignore_missing: true
245     when:
246       ref:
247         - refs/tags/*
248
249 services:
250   - name: database
251     image: postgres:12-alpine
252     environment:
253       POSTGRES_USER: lemmy
254       POSTGRES_PASSWORD: password