CI modifications (#318)

Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/318
Co-authored-by: pat-s <patrick.schratz@gmail.com>
Co-committed-by: pat-s <patrick.schratz@gmail.com>
This commit is contained in:
pat-s 2024-04-27 21:26:21 +00:00 committed by Patrick Schratz
parent 1a332c1d54
commit e45a354eef
2 changed files with 60 additions and 26 deletions

View File

@ -5,6 +5,9 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
- renovate/* - renovate/*
depends_on:
- lint
steps: steps:
# use vendor to cache dependencies # use vendor to cache dependencies
vendor: vendor:
@ -12,20 +15,6 @@ steps:
commands: commands:
- go mod vendor - go mod vendor
lint:
image: golangci/golangci-lint:latest
depends_on: vendor
pull: true
commands:
- go version
- go install mvdan.cc/gofumpt@latest
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
- golangci-lint run --timeout 5m --build-tags integration
editor-config:
depends_on: []
image: mstruebing/editorconfig-checker
build: build:
depends_on: vendor depends_on: vendor
image: codeberg.org/6543/docker-images/golang_just image: codeberg.org/6543/docker-images/golang_just
@ -33,18 +22,24 @@ steps:
- go version - go version
- just build - just build
when: when:
event: ["pull_request", "push"] - event: [push, pull_request]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
- renovate/*
docker-dryrun: docker-dryrun:
depends_on: vendor depends_on: vendor
image: plugins/kaniko image: plugins/kaniko:1.8.8
settings: settings:
dockerfile: Dockerfile dockerfile: Dockerfile
no_push: true no_push: true
tags: latest tags: latest
when: when:
event: ["pull_request", "push"] - event: [push, pull_request]
path: Dockerfile branch:
- ${CI_REPO_DEFAULT_BRANCH}
- renovate/*
path: Dockerfile
build-tag: build-tag:
depends_on: vendor depends_on: vendor
@ -53,13 +48,19 @@ steps:
- go version - go version
- just build-tag ${CI_COMMIT_TAG##v} - just build-tag ${CI_COMMIT_TAG##v}
when: when:
event: ["tag"] - event: ["tag"]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
test: test:
depends_on: build depends_on: build
image: codeberg.org/6543/docker-images/golang_just image: codeberg.org/6543/docker-images/golang_just
commands: commands:
- just test - just test
when:
- event: pull_request
- event: push
branch: renovate/*
integration-tests: integration-tests:
depends_on: build depends_on: build
@ -71,10 +72,14 @@ steps:
- PAGES_DOMAIN=localhost.mock.directory - PAGES_DOMAIN=localhost.mock.directory
- RAW_DOMAIN=raw.localhost.mock.directory - RAW_DOMAIN=raw.localhost.mock.directory
- PORT=4430 - PORT=4430
when:
- event: pull_request
- event: push
branch: renovate/*
release: release:
depends_on: build depends_on: build
image: plugins/gitea-release image: plugins/gitea-release:0.3.1
settings: settings:
base_url: https://codeberg.org base_url: https://codeberg.org
file_exists: overwrite file_exists: overwrite
@ -87,11 +92,13 @@ steps:
- CI_BUILD_EVENT=${CI_BUILD_EVENT} - CI_BUILD_EVENT=${CI_BUILD_EVENT}
- CI_COMMIT_REF=${CI_COMMIT_REF} - CI_COMMIT_REF=${CI_COMMIT_REF}
when: when:
event: ["tag"] - event: ["tag"]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
docker-next: docker-next:
depends_on: vendor depends_on: vendor
image: plugins/kaniko image: plugins/kaniko:1.8.8
settings: settings:
registry: codeberg.org registry: codeberg.org
dockerfile: Dockerfile dockerfile: Dockerfile
@ -102,12 +109,12 @@ steps:
password: password:
from_secret: bot_token from_secret: bot_token
when: when:
event: ["push"] - event: ["push"]
branch: ${CI_REPO_DEFAULT_BRANCH} branch: ${CI_REPO_DEFAULT_BRANCH}
docker-tag: docker-tag:
depends_on: vendor depends_on: vendor
image: plugins/kaniko image: plugins/kaniko:1.8.8
settings: settings:
registry: codeberg.org registry: codeberg.org
dockerfile: Dockerfile dockerfile: Dockerfile
@ -118,4 +125,5 @@ steps:
password: password:
from_secret: bot_token from_secret: bot_token
when: when:
event: ["tag"] - event: ["push"]
branch: ${CI_REPO_DEFAULT_BRANCH}

26
.woodpecker/lint.yml Normal file
View File

@ -0,0 +1,26 @@
when:
- event: pull_request
- event: push
branch: renovate/*
steps:
lint:
depends_on: []
image: golangci/golangci-lint:v1.57.2
commands:
- go version
- go install mvdan.cc/gofumpt@latest
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
- golangci-lint run --timeout 5m --build-tags integration
when:
- event: pull_request
- event: push
branch: renovate/*
editor-config:
depends_on: []
image: mstruebing/editorconfig-checker:2.7.2
when:
- event: pull_request
- event: push
branch: renovate/*