This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
flox-dockerized/.woodpecker/build_docker.yml

46 lines
968 B
YAML
Raw Normal View History

#######################
# build docker images #
#######################
# branch: master
# event: pull_request
clone:
git:
when:
branch: master
event: pull_request
image: woodpeckerci/plugin-git
pipeline:
# build docker image for amd64 - x86
dryrun-build-amd64:
when:
branch: master
event: pull_request
2022-05-25 19:21:12 +02:00
image: woodpeckerci/plugin-docker-buildx
pull: true
settings:
dry_run: true
2022-05-25 19:21:12 +02:00
repo: olofvndrhr/flox-dockerized
platforms: linux/amd64
dockerfile: Dockerfile.amd64
auto_tag: true
auto_tag_suffix: linux-amd64
# build docker image for arm64
dryrun-build-arm64:
when:
branch: master
event: pull_request
2022-05-25 19:21:12 +02:00
image: woodpeckerci/plugin-docker-buildx
pull: true
settings:
dry_run: true
2022-05-25 19:21:12 +02:00
repo: olofvndrhr/flox-dockerized
platforms: linux/arm64
dockerfile: Dockerfile.arm64
auto_tag: true
auto_tag_suffix: linux-arm64