2021-08-12 19:03:24 +00: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 16:32:55 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2021-08-12 19:03:24 +00:00
|
|
|
name: default
|
|
|
|
|
2021-09-24 11:14:20 +00:00
|
|
|
steps:
|
2022-02-07 14:22:55 +00:00
|
|
|
# We use golangci-lint for linting.
|
|
|
|
# See: https://golangci-lint.run/
|
|
|
|
- name: lint
|
2022-11-02 09:57:16 +00:00
|
|
|
image: golangci/golangci-lint:v1.50.1
|
2022-02-07 14:22:55 +00:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: golangci-lint-cache
|
|
|
|
path: /root/.cache/golangci-lint
|
|
|
|
- name: go-src
|
|
|
|
path: /go
|
|
|
|
commands:
|
|
|
|
- golangci-lint run
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2021-08-12 19:03:24 +00:00
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: test
|
2023-01-23 10:58:58 +00:00
|
|
|
image: golang:1.19.5-alpine
|
2022-02-07 14:22:55 +00:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: go-src
|
|
|
|
path: /go
|
|
|
|
commands:
|
2022-04-02 13:40:09 +00:00
|
|
|
- apk update --no-cache && apk add git
|
2022-02-07 14:22:55 +00:00
|
|
|
- CGO_ENABLED=0 GTS_DB_TYPE="sqlite" GTS_DB_ADDRESS=":memory:" go test ./...
|
2022-06-08 18:28:28 +00:00
|
|
|
- CGO_ENABLED=0 ./test/envparsing.sh
|
2022-02-07 14:22:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2021-08-12 19:03:24 +00:00
|
|
|
|
2022-11-10 13:08:54 +00:00
|
|
|
- name: web-setup
|
|
|
|
image: node:14-alpine
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
volumes:
|
|
|
|
- name: yarn_cache
|
|
|
|
path: /tmp/cache
|
|
|
|
commands:
|
|
|
|
- cd web/source
|
|
|
|
- yarn --frozen-lockfile --cache-folder /tmp/cache
|
|
|
|
|
|
|
|
- name: web-lint
|
|
|
|
image: node:14-alpine
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
depends_on:
|
|
|
|
- web-setup
|
|
|
|
commands:
|
|
|
|
- cd web/source
|
|
|
|
- yarn run lint
|
|
|
|
|
|
|
|
- name: web-build
|
|
|
|
image: node:14-alpine
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
depends_on:
|
|
|
|
- web-setup
|
|
|
|
commands:
|
|
|
|
- cd web/source
|
|
|
|
- yarn run build
|
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: snapshot
|
2023-01-23 10:58:58 +00:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.0.8 # https://github.com/superseriousbusiness/gotosocial-drone-build
|
2022-02-07 14:22:55 +00:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: docker
|
|
|
|
path: /var/run/docker.sock
|
|
|
|
environment:
|
|
|
|
DOCKER_USERNAME: gotosocial
|
|
|
|
DOCKER_PASSWORD:
|
|
|
|
from_secret: gts_docker_password
|
|
|
|
commands:
|
|
|
|
- git fetch --tags
|
|
|
|
- /go/dockerlogin.sh
|
|
|
|
- goreleaser release --rm-dist --snapshot
|
2022-11-17 12:24:49 +00:00
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-armv6 &&
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-armv7
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-arm64v8
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-amd64
|
|
|
|
- docker manifest create superseriousbusiness/gotosocial:snapshot superseriousbusiness/gotosocial:snapshot-armv6 superseriousbusiness/gotosocial:snapshot-armv7 superseriousbusiness/gotosocial:snapshot-amd64 superseriousbusiness/gotosocial:snapshot-arm64v8
|
|
|
|
- docker manifest push superseriousbusiness/gotosocial:snapshot
|
2022-02-07 14:22:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
include:
|
|
|
|
- main
|
2021-08-12 19:03:24 +00:00
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: release
|
2023-01-23 10:58:58 +00:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.0.8 # https://github.com/superseriousbusiness/gotosocial-drone-build
|
2022-02-07 14:22:55 +00:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: docker
|
|
|
|
path: /var/run/docker.sock
|
|
|
|
environment:
|
|
|
|
DOCKER_USERNAME: gotosocial
|
|
|
|
DOCKER_PASSWORD:
|
|
|
|
from_secret: gts_docker_password
|
|
|
|
GITHUB_TOKEN:
|
|
|
|
from_secret: github_token
|
|
|
|
commands:
|
|
|
|
- git fetch --tags
|
|
|
|
- /go/dockerlogin.sh
|
|
|
|
- goreleaser release --rm-dist
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- tag
|
2021-08-15 16:43:08 +00:00
|
|
|
|
|
|
|
# We can speed up builds significantly by caching build artifacts between runs.
|
|
|
|
# See: https://docs.drone.io/pipeline/docker/syntax/volumes/host/
|
|
|
|
volumes:
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: go-build-cache
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/go-build
|
|
|
|
- name: golangci-lint-cache
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/golangci-lint
|
|
|
|
- name: go-src
|
|
|
|
host:
|
|
|
|
path: /drone/gotosocial/go
|
|
|
|
- name: docker
|
|
|
|
host:
|
|
|
|
path: /var/run/docker.sock
|
2021-08-15 16:43:08 +00:00
|
|
|
|
2021-08-26 10:36:08 +00:00
|
|
|
trigger:
|
|
|
|
repo:
|
|
|
|
- superseriousbusiness/gotosocial
|
|
|
|
- NyaaaWhatsUpDoc/gotosocial
|
2021-09-11 14:21:24 +00:00
|
|
|
- f0x52/gotosocial
|
2021-08-26 10:36:08 +00:00
|
|
|
|
2022-02-12 12:55:32 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: cron
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
cron:
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: mirror
|
2023-01-23 10:58:58 +00:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.0.8
|
2022-02-12 12:55:32 +00:00
|
|
|
environment:
|
2022-04-02 13:40:09 +00:00
|
|
|
ORIGIN_REPO: https://github.com/superseriousbusiness/gotosocial
|
|
|
|
TARGET_REPO: https://codeberg.org/superseriousbusiness/gotosocial
|
|
|
|
CODEBERG_USER: gotosocialbot
|
|
|
|
CODEBERG_EMAIL: admin@gotosocial.org
|
2022-02-12 12:55:32 +00:00
|
|
|
CODEBERG_TOKEN:
|
|
|
|
from_secret: gts_codeberg_token
|
|
|
|
commands:
|
2022-04-02 13:40:09 +00:00
|
|
|
- /go/codeberg_clone.sh
|
2022-02-12 12:55:32 +00:00
|
|
|
|
2021-08-12 19:03:24 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2023-01-23 10:58:58 +00:00
|
|
|
hmac: 2db9b7ee071069e8f1b6c8b96ea553033502a6cb5d4cf6a8527ce74269bc34fb
|
2021-08-12 19:03:24 +00:00
|
|
|
|
|
|
|
...
|