summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: ad163780ed46c377711b8168f4d2b81497d58204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
### 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: go-build-cache
    path: /root/.cache/go-build
  - name: golangci-lint-cache
    path: /root/.cache/golangci-lint
  commands:
  - golangci-lint run --timeout 5m0s --tests=false --verbose
  when:
    event:
      include:
        - pull_request

- name: test
  image: golang:1.16.4
  volumes:
  - name: go-build-cache
    path: /root/.cache/go-build
  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 ./...
  when:
    event:
      include:
        - pull_request

- 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

# We need a postgres service running for the test step.
# See: https://docs.drone.io/pipeline/docker/syntax/services/
services:
- name: postgres
  image: postgres
  environment:
    POSTGRES_PASSWORD: postgres
  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

trigger:
  repo:
    - superseriousbusiness/gotosocial
    - NyaaaWhatsUpDoc/gotosocial

---
kind: signature
hmac: 7fa6fa70be0a5c436ecb2f02f4b74bd1be5e90817e2d95a16898e3d29cbadf80

...