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
Ivan Schaller d3ef15ac2e
All checks were successful
ci/woodpecker/tag/publish_docker Pipeline was successful
fix image tags
2022-06-18 13:50:11 +02:00

47 lines
1 KiB
YAML

#######################
# 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
image: woodpeckerci/plugin-docker-buildx
pull: true
settings:
dry_run: true
repo: olofvndrhr/flox-dockerized
platforms: linux/amd64
dockerfile: Dockerfile.amd64
auto_tag: true
auto_tag_suffix: linux-amd64
build_args: BUILD_VERSION=${CI_COMMIT_TAG}
# build docker image for arm64
dryrun-build-arm64:
when:
branch: master
event: pull_request
image: woodpeckerci/plugin-docker-buildx
pull: true
settings:
dry_run: true
repo: olofvndrhr/flox-dockerized
platforms: linux/arm64
dockerfile: Dockerfile.arm64
auto_tag: true
auto_tag_suffix: linux-arm64
build_args: BUILD_VERSION=${CI_COMMIT_TAG}