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:
|
2022-02-07 14:22:55 +00:00
|
|
|
# We use golangci-lint for linting.
|
|
|
|
# See: https://golangci-lint.run/
|
|
|
|
- name: lint
|
2024-04-26 09:40:29 +01:00
|
|
|
image: golangci/golangci-lint:v1.57.2
|
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 20:03:24 +01:00
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: test
|
2024-04-26 09:40:29 +01:00
|
|
|
image: golang:1.22-alpine
|
2022-02-07 14:22:55 +00:00
|
|
|
volumes:
|
|
|
|
- name: go-build-cache
|
|
|
|
path: /root/.cache/go-build
|
|
|
|
- name: go-src
|
|
|
|
path: /go
|
2024-08-23 16:15:35 +01:00
|
|
|
- name: wazero-compilation-cache
|
|
|
|
path: /root/.cache/wazero
|
2024-06-05 20:40:08 +01:00
|
|
|
environment:
|
|
|
|
CGO_ENABLED: "0"
|
2024-08-23 16:15:35 +01:00
|
|
|
GTS_WAZERO_COMPILATION_CACHE: "/root/.cache/wazero"
|
2022-02-07 14:22:55 +00:00
|
|
|
commands:
|
2022-04-02 14:40:09 +01:00
|
|
|
- apk update --no-cache && apk add git
|
2024-06-05 20:40:08 +01:00
|
|
|
- >-
|
|
|
|
go test
|
|
|
|
-failfast
|
|
|
|
-timeout=20m
|
2024-06-29 08:35:57 +01:00
|
|
|
-tags "netgo osusergo static_build kvformat timetzdata"
|
2024-06-05 20:40:08 +01:00
|
|
|
./...
|
|
|
|
- ./test/envparsing.sh
|
|
|
|
- ./test/swagger.sh
|
|
|
|
depends_on:
|
|
|
|
- lint
|
2022-02-07 14:22:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2022-11-10 13:08:54 +00:00
|
|
|
- name: web-setup
|
2023-06-03 12:58:57 +01:00
|
|
|
image: node:18-alpine
|
2022-11-10 13:08:54 +00:00
|
|
|
volumes:
|
|
|
|
- name: yarn_cache
|
|
|
|
path: /tmp/cache
|
|
|
|
commands:
|
2023-10-05 15:06:19 +01:00
|
|
|
- yarn --cwd ./web/source install --frozen-lockfile --cache-folder /tmp/cache
|
2023-10-17 11:46:06 +01:00
|
|
|
- yarn --cwd ./web/source ts-patch install # https://typia.io/docs/setup/#manual-setup
|
2024-06-05 20:40:08 +01:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
2022-11-10 13:08:54 +00:00
|
|
|
|
|
|
|
- name: web-lint
|
2023-06-03 12:58:57 +01:00
|
|
|
image: node:18-alpine
|
2024-06-05 20:40:08 +01:00
|
|
|
commands:
|
|
|
|
- yarn --cwd ./web/source lint
|
|
|
|
depends_on:
|
|
|
|
- web-setup
|
2022-11-10 13:08:54 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: web-build
|
2023-06-03 12:58:57 +01:00
|
|
|
image: node:18-alpine
|
2024-06-05 20:40:08 +01:00
|
|
|
commands:
|
|
|
|
- yarn --cwd ./web/source build
|
|
|
|
depends_on:
|
|
|
|
- web-setup
|
2022-11-10 13:08:54 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- pull_request
|
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: snapshot
|
2024-10-12 15:01:57 +01:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.6.2 # 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
|
2023-08-15 17:48:17 +01:00
|
|
|
S3_ACCESS_KEY_ID:
|
|
|
|
from_secret: gts_s3_access_key_id
|
|
|
|
S3_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: gts_s3_secret_access_key
|
|
|
|
S3_HOSTNAME: "https://s3.superseriousbusiness.org"
|
|
|
|
S3_BUCKET_NAME: "gotosocial-snapshots"
|
2022-02-07 14:22:55 +00:00
|
|
|
commands:
|
2023-08-15 17:48:17 +01:00
|
|
|
# Create a snapshot build with GoReleaser.
|
2022-02-07 14:22:55 +00:00
|
|
|
- git fetch --tags
|
2024-10-13 13:53:35 +01:00
|
|
|
- goreleaser release --clean --snapshot
|
2023-08-15 17:48:17 +01:00
|
|
|
|
|
|
|
# Login to Docker, push Docker image snapshots + manifests.
|
|
|
|
- /go/dockerlogin.sh
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-armv6
|
2022-11-17 12:24:49 +00:00
|
|
|
- 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
|
2024-10-10 17:15:02 +01:00
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-armv6-moderncsqlite
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-armv7-moderncsqlite
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-arm64v8-moderncsqlite
|
|
|
|
- docker push superseriousbusiness/gotosocial:snapshot-amd64-moderncsqlite
|
|
|
|
- docker manifest create superseriousbusiness/gotosocial:snapshot-moderncsqlite superseriousbusiness/gotosocial:snapshot-armv6-moderncsqlite superseriousbusiness/gotosocial:snapshot-armv7-moderncsqlite superseriousbusiness/gotosocial:snapshot-amd64-moderncsqlite superseriousbusiness/gotosocial:snapshot-arm64v8-moderncsqlite
|
|
|
|
- docker manifest push superseriousbusiness/gotosocial:snapshot-moderncsqlite
|
2023-08-15 17:48:17 +01:00
|
|
|
|
|
|
|
# Publish binary .tar.gz snapshots to S3.
|
|
|
|
- /go/snapshot_publish.sh
|
2022-02-07 14:22:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
include:
|
|
|
|
- main
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2022-02-07 14:22:55 +00:00
|
|
|
- name: release
|
2024-10-12 15:01:57 +01:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.6.2 # 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
|
2024-10-13 13:53:35 +01:00
|
|
|
|
|
|
|
# When releasing, compare commits to the most recent tag that is not the
|
|
|
|
# current one AND is not a release candidate tag (ie., no "rc" in the name).
|
|
|
|
#
|
|
|
|
# The DRONE_TAG env var should point to the tag that triggered this build.
|
|
|
|
# See: https://docs.drone.io/pipeline/environment/reference/drone-tag/
|
|
|
|
#
|
|
|
|
# Note, this may cause annoyances when doing backport releases, for example,
|
|
|
|
# releasing v0.10.1 when we've already released v0.15.0 or whatever, but
|
|
|
|
# they should only be superficial annoyances related to the release notes.
|
|
|
|
- GORELEASER_PREVIOUS_TAG=$(git tag -l | grep -v "rc\|${DRONE_TAG}" | sort -V -r | head -n 1) goreleaser release --clean
|
2022-02-07 14:22:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
include:
|
|
|
|
- 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:
|
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 17:43:08 +01:00
|
|
|
|
2021-08-26 11:36:08 +01:00
|
|
|
trigger:
|
|
|
|
repo:
|
|
|
|
- superseriousbusiness/gotosocial
|
|
|
|
- NyaaaWhatsUpDoc/gotosocial
|
2021-09-11 15:21:24 +01:00
|
|
|
- f0x52/gotosocial
|
2021-08-26 11:36:08 +01: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
|
2024-10-12 15:01:57 +01:00
|
|
|
image: superseriousbusiness/gotosocial-drone-build:0.6.2
|
2022-02-12 12:55:32 +00:00
|
|
|
environment:
|
2022-04-02 14:40:09 +01: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 14:40:09 +01:00
|
|
|
- /go/codeberg_clone.sh
|
2022-02-12 12:55:32 +00:00
|
|
|
|
2021-08-12 20:03:24 +01:00
|
|
|
---
|
|
|
|
kind: signature
|
2024-10-13 13:53:35 +01:00
|
|
|
hmac: 1b89e3a538fbca72eb9a0b398cd82f09a774ba3649013e19d36012eda327e83f
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
...
|