lemmy/.drone.yml

109 lines
2.4 KiB
YAML
Raw Normal View History

2020-12-08 21:13:53 +01:00
kind: pipeline
name: default
steps:
2020-12-10 13:14:32 +01:00
2020-12-10 20:45:14 +01:00
- name: chown repo
image: ekidd/rust-musl-builder:1.47.0
user: root
2020-12-10 20:45:14 +01:00
commands:
- chown 1000:1000 . -R
- name: check formatting
2020-12-11 15:28:36 +01:00
image: rustdocker/rust:nightly
commands:
2020-12-11 15:31:19 +01:00
- /root/.cargo/bin/cargo fmt -- --check
2020-12-11 17:01:05 +01:00
# disable this
when:
ref:
- refs/tags/*
2020-12-10 20:45:14 +01:00
- name: cargo check
image: ekidd/rust-musl-builder:1.47.0
commands:
- cargo check --workspace --all-targets
2020-12-11 17:01:05 +01:00
# disable this
when:
ref:
- refs/tags/*
- name: cargo clippy
2020-12-10 20:45:14 +01:00
image: ekidd/rust-musl-builder:1.47.0
commands:
- cargo clippy
2020-12-11 17:01:05 +01:00
# disable this
when:
ref:
- refs/tags/*
- name: check documentation build
2020-12-10 20:45:14 +01:00
image: ekidd/rust-musl-builder:1.47.0
commands:
- mdbook build docs/
2020-12-10 13:33:24 +01:00
- name: cargo test
2020-12-10 20:45:14 +01:00
image: ekidd/rust-musl-builder:1.47.0
2020-12-09 23:58:50 +01:00
environment:
2020-12-10 02:10:17 +01:00
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
2020-12-10 00:00:43 +01:00
RUST_BACKTRACE: 1
RUST_TEST_THREADS: 1
2020-12-08 21:13:53 +01:00
commands:
2020-12-10 21:03:32 +01:00
- sudo apt-get update
- sudo apt-get -y install --no-install-recommends espeak postgresql-client
- cargo test --workspace --no-fail-fast
2020-12-11 17:01:05 +01:00
# disable this
when:
ref:
- refs/tags/*
2020-12-10 13:24:16 +01:00
2020-12-10 17:46:36 +01:00
- name: cargo build
2020-12-10 20:45:14 +01:00
image: ekidd/rust-musl-builder:1.47.0
2020-12-10 17:46:36 +01:00
commands:
2020-12-11 17:46:50 +01:00
- cargo build
2020-12-11 17:58:03 +01:00
- mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
2020-12-10 17:46:36 +01:00
- name: run federation tests
2020-12-17 21:10:20 -05:00
image: node:15-alpine3.12
2020-12-11 18:09:47 +01:00
environment:
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
DO_WRITE_HOSTS_FILE: 1
2020-12-09 22:43:32 +01:00
commands:
2020-12-11 17:33:55 +01:00
- ls -la target/lemmy_server
2020-12-17 21:10:20 -05:00
- apk add bash curl postgresql-client
2020-12-10 21:36:50 +01:00
- bash api_tests/prepare-drone-federation-test.sh
2020-12-10 21:14:05 +01:00
- cd api_tests/
2020-12-09 22:43:32 +01:00
- yarn
- yarn api-test
2020-12-10 17:20:44 +01:00
- name: create docker tags
2020-12-10 20:45:14 +01:00
image: ekidd/rust-musl-builder:1.47.0
2020-12-10 17:20:44 +01:00
commands:
2020-12-10 18:05:53 +01:00
- echo "$(git describe),latest" > .tags
2020-12-10 13:55:38 +01:00
when:
ref:
2020-12-10 17:20:44 +01:00
- refs/tags/*
2020-12-08 21:13:53 +01:00
2020-12-09 23:17:32 +01:00
- name: make release build and push to docker hub
2020-12-09 23:58:50 +01:00
image: plugins/docker
settings:
dockerfile: docker/prod/Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password
2020-12-09 23:58:50 +01:00
repo: dessalines/lemmy
2020-12-10 17:20:44 +01:00
when:
ref:
- refs/tags/*
2020-12-10 13:21:34 +01:00
2020-12-10 13:47:46 +01:00
services:
- name: database
image: postgres:12-alpine
environment:
POSTGRES_USER: lemmy
POSTGRES_PASSWORD: password
2020-12-10 13:21:34 +01:00
volumes:
- name: dieselcli
2020-12-10 13:47:46 +01:00
temp: {}