2022-07-17 16:25:56 +00:00
|
|
|
variables:
|
2024-05-13 13:27:17 +00:00
|
|
|
- &golang_image 'docker.io/golang:1.22'
|
2023-07-10 12:46:55 +00:00
|
|
|
- &when
|
2023-10-24 12:42:05 +00:00
|
|
|
- path: &when_path # related config files
|
2024-01-11 17:43:54 +00:00
|
|
|
- '.woodpecker/test.yaml'
|
2024-01-10 14:10:56 +00:00
|
|
|
- '.golangci.yaml'
|
2023-07-10 12:46:55 +00:00
|
|
|
# go source code
|
2023-10-24 12:42:05 +00:00
|
|
|
- '**/*.go'
|
|
|
|
- 'go.*'
|
2023-07-10 12:46:55 +00:00
|
|
|
# schema changes
|
2023-10-24 12:42:05 +00:00
|
|
|
- 'pipeline/schema/**'
|
2024-01-10 14:10:56 +00:00
|
|
|
event: pull_request
|
|
|
|
- event: push
|
|
|
|
branch: renovate/*
|
|
|
|
path: *when_path
|
2022-07-17 16:25:56 +00:00
|
|
|
|
2024-02-23 05:05:25 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
|
|
|
- event: push
|
|
|
|
branch: renovate/*
|
|
|
|
- event: push
|
|
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
path: *when_path
|
|
|
|
|
2023-06-30 11:32:17 +00:00
|
|
|
steps:
|
2022-08-14 17:04:19 +00:00
|
|
|
vendor:
|
|
|
|
image: *golang_image
|
|
|
|
commands:
|
|
|
|
- go mod vendor
|
2023-10-14 11:04:46 +00:00
|
|
|
when:
|
2024-01-10 14:10:56 +00:00
|
|
|
path:
|
|
|
|
- <<: *when_path
|
|
|
|
- '.woodpecker/**'
|
2022-08-14 17:04:19 +00:00
|
|
|
|
2022-05-17 15:59:51 +00:00
|
|
|
lint-pipeline:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2022-05-17 15:59:51 +00:00
|
|
|
commands:
|
2023-12-08 07:15:08 +00:00
|
|
|
- go run go.woodpecker-ci.org/woodpecker/v2/cmd/cli lint
|
2024-03-18 13:21:53 +00:00
|
|
|
environment:
|
|
|
|
WOODPECKER_DISABLE_UPDATE_CHECK: true
|
2022-05-20 03:31:19 +00:00
|
|
|
when:
|
2024-01-10 14:10:56 +00:00
|
|
|
- event: pull_request
|
|
|
|
path:
|
2023-10-24 12:42:05 +00:00
|
|
|
- '.woodpecker/**'
|
2022-05-17 15:59:51 +00:00
|
|
|
|
2021-11-30 16:46:19 +00:00
|
|
|
dummy-web:
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
|
|
|
- mkdir -p web/dist/
|
|
|
|
- echo "test" > web/dist/index.html
|
2023-10-14 12:07:46 +00:00
|
|
|
when:
|
|
|
|
- path: *when_path
|
2021-11-30 16:46:19 +00:00
|
|
|
|
|
|
|
lint:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
|
|
|
- make lint
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|
2021-11-30 16:46:19 +00:00
|
|
|
|
2024-01-10 14:10:56 +00:00
|
|
|
check-swagger:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2023-06-03 19:38:36 +00:00
|
|
|
image: *golang_image
|
|
|
|
commands:
|
2023-10-24 12:42:05 +00:00
|
|
|
- 'make generate-swagger'
|
|
|
|
- 'DIFF=$(git diff | head)'
|
|
|
|
- '[ -n "$DIFF" ] && { echo "swagger not up to date, exec `make generate-swagger` and commit"; exit 1; } || true'
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|
2023-06-03 19:38:36 +00:00
|
|
|
|
2023-08-10 09:06:00 +00:00
|
|
|
lint-license-header:
|
|
|
|
image: *golang_image
|
|
|
|
commands:
|
2024-05-24 20:35:04 +00:00
|
|
|
- go install github.com/google/addlicense@latest # cspell:words addlicense
|
2023-10-24 12:42:05 +00:00
|
|
|
- 'addlicense -check -ignore "vendor/**" **/*.go'
|
|
|
|
when: *when
|
|
|
|
|
2021-12-07 00:13:31 +00:00
|
|
|
test:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
|
|
|
- make test-agent
|
|
|
|
- make test-server
|
|
|
|
- make test-cli
|
|
|
|
- make test-lib
|
2023-10-14 11:04:46 +00:00
|
|
|
when:
|
|
|
|
- path: *when_path
|
2021-11-30 16:46:19 +00:00
|
|
|
|
|
|
|
sqlite:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
environment:
|
2024-03-18 13:21:53 +00:00
|
|
|
WOODPECKER_DATABASE_DRIVER: sqlite3
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
2022-02-01 18:34:56 +00:00
|
|
|
- make test-server-datastore-coverage
|
2023-10-14 11:04:46 +00:00
|
|
|
when:
|
|
|
|
- path: *when_path
|
2021-11-30 16:46:19 +00:00
|
|
|
|
|
|
|
postgres:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
environment:
|
2024-03-18 13:21:53 +00:00
|
|
|
WOODPECKER_DATABASE_DRIVER: postgres
|
2024-05-24 20:35:04 +00:00
|
|
|
WOODPECKER_DATABASE_DATASOURCE: 'host=postgres user=postgres dbname=postgres sslmode=disable' # cspell:disable-line
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
|
|
|
- make test-server-datastore
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|
2021-11-30 16:46:19 +00:00
|
|
|
|
|
|
|
mysql:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- vendor
|
2022-07-17 16:25:56 +00:00
|
|
|
image: *golang_image
|
2021-11-30 16:46:19 +00:00
|
|
|
environment:
|
2024-03-18 13:21:53 +00:00
|
|
|
WOODPECKER_DATABASE_DRIVER: mysql
|
2024-03-18 19:41:00 +00:00
|
|
|
WOODPECKER_DATABASE_DATASOURCE: root@tcp(mysql:3306)/test?parseTime=true
|
2021-11-30 16:46:19 +00:00
|
|
|
commands:
|
|
|
|
- make test-server-datastore
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|
2021-11-30 16:46:19 +00:00
|
|
|
|
2022-02-01 18:34:56 +00:00
|
|
|
codecov:
|
2023-12-28 15:39:14 +00:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
- sqlite
|
2022-02-01 18:34:56 +00:00
|
|
|
pull: true
|
2023-11-01 14:25:48 +00:00
|
|
|
image: docker.io/woodpeckerci/plugin-codecov:2.1.2
|
2022-02-01 18:34:56 +00:00
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- agent-coverage.out
|
|
|
|
- cli-coverage.out
|
2022-10-01 09:51:04 +00:00
|
|
|
- coverage.out
|
2022-02-01 18:34:56 +00:00
|
|
|
- server-coverage.out
|
|
|
|
- datastore-coverage.out
|
|
|
|
token:
|
|
|
|
from_secret: codecov_token
|
2023-10-14 11:04:46 +00:00
|
|
|
when:
|
|
|
|
- path: *when_path
|
2023-03-21 19:00:45 +00:00
|
|
|
failure: ignore
|
2022-02-01 18:34:56 +00:00
|
|
|
|
2021-11-30 16:46:19 +00:00
|
|
|
services:
|
2024-03-18 19:41:00 +00:00
|
|
|
postgres:
|
2023-11-01 14:25:48 +00:00
|
|
|
image: docker.io/postgres:16
|
2023-10-24 12:42:05 +00:00
|
|
|
ports: ['5432']
|
2021-11-30 16:46:19 +00:00
|
|
|
environment:
|
2024-03-18 13:21:53 +00:00
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|
2022-01-29 12:58:55 +00:00
|
|
|
|
2024-03-18 19:41:00 +00:00
|
|
|
mysql:
|
2023-11-01 14:25:48 +00:00
|
|
|
image: docker.io/mysql:8.2.0
|
2023-10-24 12:42:05 +00:00
|
|
|
ports: ['3306']
|
2021-11-30 16:46:19 +00:00
|
|
|
environment:
|
2024-03-18 13:21:53 +00:00
|
|
|
MYSQL_DATABASE: test
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
|
2023-07-10 12:46:55 +00:00
|
|
|
when: *when
|