mirror of https://sc.cryxtal.org/crystal/forgejo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
570 B
33 lines
570 B
platform: linux/amd64
|
|
|
|
workspace:
|
|
base: /go
|
|
path: src/codeberg/gitea
|
|
|
|
pipeline:
|
|
deps-backend:
|
|
image: golang:1.19
|
|
pull: true
|
|
commands:
|
|
- make deps-backend
|
|
|
|
security-check:
|
|
image: golang:1.19
|
|
pull: true
|
|
commands:
|
|
- make security-check
|
|
|
|
lint-backend:
|
|
image: gitea/test_env:linux-amd64
|
|
pull: true
|
|
environment:
|
|
- TAGS=bindata sqlite sqlite_unlock_notify
|
|
- GOSUMDB=sum.golang.org
|
|
commands:
|
|
- make lint-backend
|
|
|
|
checks-backend:
|
|
image: golang:1.19
|
|
commands:
|
|
- make --always-make checks-backend
|