gotosocial/.drone.yml
2021-08-12 16:08:14 +02:00

66 lines
1.7 KiB
YAML

### Drone configuration file for GoToSocial.
### Connects to https://drone.superseriousbusiness.org to perform testing, linting, and automatic builds/pushes to docker.
###
### For documentation on drone, see: https://docs.drone.io/
### For documentation on drone docker pipelines in particular: https://docs.drone.io/pipeline/docker/overview/
kind: pipeline
type: docker
name: default
steps:
# We use golangci-lint for linting.
# See: https://golangci-lint.run/
- name: lint
image: golangci/golangci-lint:v1.41.1
volumes:
- name: cache
path: /go/pkg
commands:
- golangci-lint run --timeout 5m0s --tests=false --verbose
- name: test
image: golang:1.16.4
volumes:
- name: cache
path: /go/pkg
environment:
GTS_DB_ADDRESS: postgres
commands:
# `-count 1` => run all tests at least once
# `-p 1` => run maximum one test at a time
# `./...` => run all tests
- go test -count 1 -p 1 ./...
- name: publish
image: plugins/docker
volumes:
- name: cache
path: /go/pkg
settings:
auto_tag: true
username: gotosocial
password:
from_secret: gts_docker_password
repo: superseriousbusiness/gotosocial
tags: latest
when:
event:
exclude:
- pull_request
services:
# We need this postgres service running for the test step.
# See: https://docs.drone.io/pipeline/docker/syntax/services/
- name: postgres
image: postgres
environment:
POSTGRES_PASSWORD: postgres
volumes:
# This volume is used to hold state between runs,
# so that we don't need to reinstall everything in gopkg.
# See: https://docs.drone.io/pipeline/docker/syntax/volumes/temporary/
- name: cache
host:
path: /drone/gotosocial/gopkg