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-09-24 12:14:20 +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-11-22 07:46:19 +00:00
|
|
|
image: golangci/golangci-lint:v1.43.0
|
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-09-24 12:14:20 +01:00
|
|
|
- name: go-src
|
|
|
|
path: /go
|
2021-08-12 20:03:24 +01:00
|
|
|
commands:
|
2021-11-22 07:46:19 +00:00
|
|
|
- golangci-lint run
|
2021-08-12 20:22:23 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
2021-09-24 12:14:20 +01:00
|
|
|
- pull_request
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
- name: test
|
2021-12-12 13:31:58 +00:00
|
|
|
image: golang:1.17.5-alpine3.14
|
2021-08-15 17:43:08 +01:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
2021-09-24 12:14:20 +01:00
|
|
|
- name: go-src
|
|
|
|
path: /go
|
2021-08-12 20:03:24 +01:00
|
|
|
commands:
|
2021-11-27 12:41:00 +00:00
|
|
|
- CGO_ENABLED=0 GTS_DB_TYPE="sqlite" GTS_DB_ADDRESS=":memory:" go test ./...
|
2021-12-07 12:31:39 +00:00
|
|
|
- CGO_ENABLED=0 ./test/cliparsing.sh
|
2021-08-12 20:22:23 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
2021-09-24 12:14:20 +01:00
|
|
|
- pull_request
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2021-09-24 12:14:20 +01:00
|
|
|
- name: snapshot
|
2021-12-12 13:31:58 +00:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.0.1 # https://github.com/superseriousbusiness/gotosocial-drone-build
|
2021-09-24 12:14:20 +01:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: docker
|
|
|
|
path: /var/run/docker.sock
|
|
|
|
environment:
|
|
|
|
DOCKER_USERNAME: gotosocial
|
|
|
|
DOCKER_PASSWORD:
|
2021-08-12 20:03:24 +01:00
|
|
|
from_secret: gts_docker_password
|
2021-09-24 12:14:20 +01:00
|
|
|
commands:
|
2021-11-13 17:33:01 +00:00
|
|
|
- git fetch --tags
|
2021-09-24 12:14:20 +01:00
|
|
|
- /go/dockerlogin.sh
|
|
|
|
- goreleaser release --rm-dist --snapshot
|
|
|
|
- docker push superseriousbusiness/gotosocial:latest
|
2021-08-12 20:03:24 +01:00
|
|
|
when:
|
|
|
|
event:
|
2021-09-24 12:14:20 +01:00
|
|
|
include:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
include:
|
|
|
|
- main
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2021-09-24 12:14:20 +01:00
|
|
|
- name: release
|
2021-12-12 13:31:58 +00:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.0.1 # https://github.com/superseriousbusiness/gotosocial-drone-build
|
2021-09-24 12:14:20 +01:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: docker
|
|
|
|
path: /var/run/docker.sock
|
2021-08-12 20:03:24 +01:00
|
|
|
environment:
|
2021-09-24 12:14:20 +01:00
|
|
|
DOCKER_USERNAME: gotosocial
|
|
|
|
DOCKER_PASSWORD:
|
|
|
|
from_secret: gts_docker_password
|
|
|
|
GITHUB_TOKEN:
|
|
|
|
from_secret: github_token
|
|
|
|
commands:
|
2021-11-13 17:33:01 +00:00
|
|
|
- git fetch --tags
|
2021-09-24 12:14:20 +01:00
|
|
|
- /go/dockerlogin.sh
|
|
|
|
- goreleaser release --rm-dist
|
2021-08-15 17:43:08 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
2021-09-24 12:14:20 +01:00
|
|
|
- tag
|
2021-08-15 17:43:08 +01:00
|
|
|
|
|
|
|
# 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-09-24 12:14:20 +01:00
|
|
|
- name: go-src
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/go
|
|
|
|
- name: docker
|
|
|
|
host:
|
|
|
|
path: /var/run/docker.sock
|
2021-08-15 17:43:08 +01:00
|
|
|
|
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-12-12 13:31:58 +00:00
|
|
|
hmac: 6229aa9f503d87f4f6043a97eab2a73cb7ae466eb89eeb6479692aabc1c0f6c1
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
...
|