1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00

236 lines
6.2 KiB
YAML
Raw Normal View History

2016-05-06 11:24:08 -07:00
pipeline:
build-web:
image: node:16-alpine
commands:
- cd web/
- yarn install --frozen-lockfile
- yarn build
2019-11-12 14:27:39 +01:00
build-server:
group: build
2021-02-19 09:26:11 +01:00
image: golang:1.16
2019-11-12 14:31:51 +01:00
commands:
- make release-server
build-agent:
group: build
image: golang:1.16
commands:
- make release-agent
when:
event: tag
2015-09-30 22:16:42 -07:00
2021-02-19 09:26:11 +01:00
build-cli:
group: build
2021-02-19 09:26:11 +01:00
image: golang:1.16
commands:
- make release-cli
when:
event: tag
2021-02-19 09:26:11 +01:00
2021-10-20 21:55:09 +02:00
build-deb-rpm:
group: bundle
image: golang:1.16
commands:
- make bundle
when:
event: tag
2021-10-20 21:55:09 +02:00
2019-11-12 14:31:51 +01:00
publish-server:
2017-05-08 02:01:04 +02:00
image: plugins/docker
group: bundle
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-server
dockerfile: docker/Dockerfile.server
tag: next
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
event: push
publish-server-alpine:
image: plugins/docker
group: bundle
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-server
dockerfile: docker/Dockerfile.server.alpine
tag: next-alpine
2019-04-04 21:18:28 +02:00
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
2019-04-04 21:18:28 +02:00
event: push
publish-agent-dryrun:
group: bundle
image: woodpeckerci/plugin-docker-buildx
settings:
dry_run: true
repo: woodpeckerci/woodpecker-agent
dockerfile: docker/Dockerfile.agent.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: test
when:
event: pull_request
2019-11-12 14:31:51 +01:00
publish-agent:
2021-10-20 21:55:09 +02:00
group: bundle
image: woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-agent
dockerfile: docker/Dockerfile.agent.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: next
2016-05-04 00:06:05 -07:00
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
2016-05-04 00:06:05 -07:00
event: push
publish-agent-alpine:
2021-10-20 21:55:09 +02:00
group: bundle
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-agent
dockerfile: docker/Dockerfile.agent.alpine.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
tag: next-alpine
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
event: push
2017-09-29 11:21:06 -07:00
publish-cli-dryrun:
group: docker
image: woodpeckerci/plugin-docker-buildx
settings:
dry_run: true
repo: woodpeckerci/woodpecker-cli
dockerfile: docker/Dockerfile.cli.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: test
when:
event: pull_request
publish-cli:
group: docker
image: woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-cli
dockerfile: docker/Dockerfile.cli.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: next
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
event: push
publish-cli-alpine:
group: docker
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-cli
dockerfile: docker/Dockerfile.cli.alpine.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
tag: next-alpine
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
event: push
2019-11-12 14:31:51 +01:00
release-server:
2021-10-20 21:55:09 +02:00
group: bundle
2017-05-12 12:30:19 +02:00
image: plugins/docker
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-server
dockerfile: docker/Dockerfile.server
tag: [latest, "${CI_COMMIT_TAG}"]
when:
event: tag
release-server-alpine:
2021-10-20 21:55:09 +02:00
group: bundle
image: plugins/docker
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-server
dockerfile: docker/Dockerfile.server.alpine
tag: [latest-alpine, "${CI_COMMIT_TAG}-alpine"]
2017-05-12 12:30:19 +02:00
when:
event: tag
2019-11-12 14:31:51 +01:00
release-agent:
2021-10-20 21:55:09 +02:00
group: bundle
image: woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-agent
dockerfile: docker/Dockerfile.agent.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: [latest, "${CI_COMMIT_TAG}"]
when:
event: tag
release-agent-alpine:
2021-10-20 21:55:09 +02:00
group: bundle
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-agent
dockerfile: docker/Dockerfile.agent.alpine.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
tag: [latest-alpine, "${CI_COMMIT_TAG}-alpine"]
2017-06-29 18:51:22 -04:00
when:
event: tag
release-cli:
group: docker
image: woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password]
settings:
repo: woodpeckerci/woodpecker-cli
dockerfile: docker/Dockerfile.cli.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
tag: [latest, "${CI_COMMIT_TAG}"]
when:
event: tag
release-cli-alpine:
group: docker
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
repo: woodpeckerci/woodpecker-cli
dockerfile: docker/Dockerfile.cli.alpine.multiarch
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
tag: [latest-alpine, "${CI_COMMIT_TAG}-alpine"]
when:
event: tag
checksums:
image: golang:1.16
commands:
- make release-checksums
when:
event: tag
# TODO: upload build artifacts for pushes to ${CI_REPO_DEFAULT_BRANCH}
release:
2021-02-19 09:26:11 +01:00
image: plugins/github-release
secrets:
- source: github_token
target: github_release_api_key
settings:
files:
- dist/*.tar.gz
- dist/*.deb
- dist/*.rpm
- dist/checksums.txt
title: ${CI_COMMIT_TAG##v}
2021-02-19 09:26:11 +01:00
when:
event: tag
depends_on:
- test
- web