forked from coop-cloud/abra
80 lines
1.5 KiB
YAML
80 lines
1.5 KiB
YAML
---
|
|
kind: pipeline
|
|
name: coopcloud.tech/abra
|
|
steps:
|
|
- name: make check
|
|
image: golang:1.19
|
|
commands:
|
|
- make check
|
|
|
|
- name: make build
|
|
image: golang:1.19
|
|
commands:
|
|
- make build
|
|
|
|
- name: make test
|
|
image: golang:1.19
|
|
commands:
|
|
- make test
|
|
|
|
- name: notify on failure
|
|
image: plugins/matrix
|
|
settings:
|
|
homeserver: https://matrix.autonomic.zone
|
|
roomid: "IFazIpLtxiScqbHqoa:autonomic.zone"
|
|
userid: "@autono-bot:autonomic.zone"
|
|
accesstoken:
|
|
from_secret: autono_bot_access_token
|
|
depends_on:
|
|
- make check
|
|
- make build
|
|
- make test
|
|
when:
|
|
status:
|
|
- failure
|
|
|
|
- name: fetch
|
|
image: docker:git
|
|
commands:
|
|
- git fetch --tags
|
|
depends_on:
|
|
- make check
|
|
- make build
|
|
- make test
|
|
when:
|
|
event: tag
|
|
|
|
- name: release
|
|
image: golang:1.19
|
|
environment:
|
|
GITEA_TOKEN:
|
|
from_secret: goreleaser_gitea_token
|
|
volumes:
|
|
- name: deps
|
|
path: /go
|
|
commands:
|
|
- curl -sL https://git.io/goreleaser | bash
|
|
depends_on:
|
|
- fetch
|
|
when:
|
|
event: tag
|
|
|
|
- name: publish image
|
|
image: plugins/docker
|
|
settings:
|
|
auto_tag: true
|
|
username: 3wordchant
|
|
password:
|
|
from_secret: git_coopcloud_tech_token_3wc
|
|
repo: git.coopcloud.tech/coop-cloud/abra
|
|
tags: latest
|
|
registry: git.coopcloud.tech
|
|
when:
|
|
event:
|
|
exclude:
|
|
- pull_request
|
|
|
|
volumes:
|
|
- name: deps
|
|
temp: {}
|