2023-07-12 23:25:05 +02:00
|
|
|
when:
|
2023-08-07 13:03:23 +02:00
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: push
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
- release/*
|
2023-07-12 23:25:05 +02:00
|
|
|
|
2022-07-17 18:25:56 +02:00
|
|
|
variables:
|
2023-10-11 11:11:48 +02:00
|
|
|
- &golang_image 'golang:1.21.3'
|
2023-07-10 14:46:55 +02:00
|
|
|
- &when
|
|
|
|
- path: &when_path
|
|
|
|
# related config files
|
|
|
|
- ".woodpecker/test.yml"
|
|
|
|
- ".golangci.yml"
|
|
|
|
# go source code
|
|
|
|
- "**/*.go"
|
|
|
|
- "go.*"
|
|
|
|
# schema changes
|
|
|
|
- "pipeline/schema/**"
|
|
|
|
event: [pull_request, tag, deployment]
|
2022-07-17 18:25:56 +02:00
|
|
|
|
2023-06-30 13:32:17 +02:00
|
|
|
steps:
|
2022-08-14 19:04:19 +02:00
|
|
|
vendor:
|
|
|
|
image: *golang_image
|
|
|
|
group: prepare
|
|
|
|
commands:
|
|
|
|
- go mod vendor
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2022-08-14 19:04:19 +02:00
|
|
|
|
2022-05-17 17:59:51 +02:00
|
|
|
lint-pipeline:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2022-05-17 17:59:51 +02:00
|
|
|
commands:
|
2022-07-17 18:25:56 +02:00
|
|
|
- go run github.com/woodpecker-ci/woodpecker/cmd/cli lint
|
2022-05-20 05:31:19 +02:00
|
|
|
when:
|
2023-07-10 14:46:55 +02:00
|
|
|
- <<: *when
|
|
|
|
- path:
|
2022-05-20 05:31:19 +02:00
|
|
|
- ".woodpecker/**"
|
2022-07-19 15:06:08 +02:00
|
|
|
- "pipeline/schema/**"
|
2022-05-17 17:59:51 +02:00
|
|
|
|
2021-11-30 18:46:19 +02:00
|
|
|
dummy-web:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2022-06-17 01:57:02 +02:00
|
|
|
group: prepare
|
2021-11-30 18:46:19 +02:00
|
|
|
commands:
|
|
|
|
- mkdir -p web/dist/
|
|
|
|
- echo "test" > web/dist/index.html
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
|
|
|
lint:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2021-11-30 18:46:19 +02:00
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- make lint
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
2023-06-03 21:38:36 +02:00
|
|
|
check_swagger:
|
|
|
|
image: *golang_image
|
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- "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 14:46:55 +02:00
|
|
|
when: *when
|
2023-06-03 21:38:36 +02:00
|
|
|
|
2022-06-17 12:03:34 +02:00
|
|
|
lint-editorconfig:
|
2023-10-10 18:35:53 +02:00
|
|
|
image: mstruebing/editorconfig-checker:2.7.2
|
2022-06-17 12:03:34 +02:00
|
|
|
group: test
|
|
|
|
|
2023-08-10 11:06:00 +02:00
|
|
|
lint-license-header:
|
|
|
|
image: *golang_image
|
|
|
|
commands:
|
|
|
|
- go install github.com/google/addlicense@latest
|
|
|
|
- "addlicense -check -ignore \"vendor/**\" **/*.go"
|
|
|
|
when: *when
|
|
|
|
|
2021-12-07 02:13:31 +02:00
|
|
|
test:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2021-11-30 18:46:19 +02:00
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- make test-agent
|
|
|
|
- make test-server
|
|
|
|
- make test-cli
|
|
|
|
- make test-lib
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
|
|
|
sqlite:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2021-11-30 18:46:19 +02:00
|
|
|
group: test
|
|
|
|
environment:
|
2021-12-20 17:15:21 +02:00
|
|
|
- WOODPECKER_DATABASE_DRIVER=sqlite3
|
2021-11-30 18:46:19 +02:00
|
|
|
commands:
|
2022-02-01 20:34:56 +02:00
|
|
|
- make test-server-datastore-coverage
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
|
|
|
postgres:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2021-11-30 18:46:19 +02:00
|
|
|
group: test
|
|
|
|
environment:
|
2021-12-20 17:15:21 +02:00
|
|
|
- WOODPECKER_DATABASE_DRIVER=postgres
|
|
|
|
- WOODPECKER_DATABASE_DATASOURCE=host=service-postgres user=postgres dbname=postgres sslmode=disable
|
2021-11-30 18:46:19 +02:00
|
|
|
commands:
|
|
|
|
- make test-server-datastore
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
|
|
|
mysql:
|
2022-07-17 18:25:56 +02:00
|
|
|
image: *golang_image
|
2021-11-30 18:46:19 +02:00
|
|
|
group: test
|
|
|
|
environment:
|
2021-12-20 17:15:21 +02:00
|
|
|
- WOODPECKER_DATABASE_DRIVER=mysql
|
|
|
|
- WOODPECKER_DATABASE_DATASOURCE=root@tcp(service-mysql:3306)/test?parseTime=true
|
2021-11-30 18:46:19 +02:00
|
|
|
commands:
|
|
|
|
- make test-server-datastore
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2021-11-30 18:46:19 +02:00
|
|
|
|
2022-02-01 20:34:56 +02:00
|
|
|
codecov:
|
|
|
|
pull: true
|
|
|
|
image: woodpeckerci/plugin-codecov:next-alpine
|
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- agent-coverage.out
|
|
|
|
- cli-coverage.out
|
2022-10-01 11:51:04 +02:00
|
|
|
- coverage.out
|
2022-02-01 20:34:56 +02:00
|
|
|
- server-coverage.out
|
|
|
|
- datastore-coverage.out
|
|
|
|
token:
|
|
|
|
from_secret: codecov_token
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2023-03-21 21:00:45 +02:00
|
|
|
failure: ignore
|
2022-02-01 20:34:56 +02:00
|
|
|
|
2021-11-30 18:46:19 +02:00
|
|
|
services:
|
2021-12-07 02:13:31 +02:00
|
|
|
service-postgres:
|
2022-01-08 21:21:22 +02:00
|
|
|
image: postgres:11
|
2021-11-30 18:46:19 +02:00
|
|
|
ports: ["5432"]
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|
2022-01-29 14:58:55 +02:00
|
|
|
|
2021-12-07 02:13:31 +02:00
|
|
|
service-mysql:
|
2023-10-10 18:20:08 +02:00
|
|
|
image: mysql:8.1.0
|
2021-11-30 18:46:19 +02:00
|
|
|
ports: ["3306"]
|
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
2023-07-10 14:46:55 +02:00
|
|
|
when: *when
|