2021-08-12 20:03:24 +01:00
|
|
|
---
|
|
|
|
### 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/
|
|
|
|
|
2021-08-10 17:32:55 +01:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2021-08-12 20:03:24 +01:00
|
|
|
name: default
|
2021-08-10 17:32:55 +01:00
|
|
|
steps:
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
# We use golangci-lint for linting.
|
|
|
|
# See: https://golangci-lint.run/
|
|
|
|
- name: lint
|
2021-09-10 13:42:14 +01:00
|
|
|
image: golangci/golangci-lint:v1.42.1
|
2021-08-15 17:43:08 +01:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: golangci-lint-cache
|
|
|
|
path: /root/.cache/golangci-lint
|
2021-08-12 20:03:24 +01:00
|
|
|
commands:
|
|
|
|
- golangci-lint run --timeout 5m0s --tests=false --verbose
|
2021-08-12 20:22:23 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
- name: test
|
2021-09-11 15:21:24 +01:00
|
|
|
image: golang:1.17.1-alpine3.14
|
2021-08-15 17:43:08 +01:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
2021-08-12 20:03:24 +01:00
|
|
|
commands:
|
2021-09-11 15:55:55 +01:00
|
|
|
- CGO_ENABLED=0 GTS_DB_TYPE="sqlite" GTS_DB_ADDRESS=":memory:" go test -count 1 -p 1 ./...
|
|
|
|
- CGO_ENABLED=0 GTS_DB_TYPE="postgres" GTS_DB_ADDRESS="postgres" go test -count 1 -p 1 ./...
|
2021-08-12 20:22:23 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
- name: publish
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
username: gotosocial
|
|
|
|
password:
|
|
|
|
from_secret: gts_docker_password
|
|
|
|
repo: superseriousbusiness/gotosocial
|
|
|
|
tags: latest
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2021-08-15 17:43:08 +01:00
|
|
|
# We need a postgres service running for the test step.
|
2021-08-12 20:03:24 +01:00
|
|
|
# See: https://docs.drone.io/pipeline/docker/syntax/services/
|
2021-08-15 17:43:08 +01:00
|
|
|
services:
|
2021-08-12 20:03:24 +01:00
|
|
|
- name: postgres
|
|
|
|
image: postgres
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2021-08-15 17:43:08 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
# We can speed up builds significantly by caching build artifacts between runs.
|
|
|
|
# See: https://docs.drone.io/pipeline/docker/syntax/volumes/host/
|
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/go-build
|
|
|
|
- name: golangci-lint-cache
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/golangci-lint
|
|
|
|
|
2021-08-26 11:36:08 +01:00
|
|
|
trigger:
|
|
|
|
repo:
|
2021-09-11 15:21:24 +01:00
|
|
|
exclude:
|
|
|
|
- "*"
|
|
|
|
include:
|
2021-08-26 11:36:08 +01:00
|
|
|
- superseriousbusiness/gotosocial
|
|
|
|
- NyaaaWhatsUpDoc/gotosocial
|
2021-09-11 15:21:24 +01:00
|
|
|
- f0x52/gotosocial
|
2021-08-26 11:36:08 +01:00
|
|
|
|
2021-08-12 20:03:24 +01:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-09-11 15:55:55 +01:00
|
|
|
hmac: 703dad12a9e92cbd415b23d82620608830a60a70168527118e2e9aab145f1099
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
...
|