fpm/.woodpecker/build.yml

41 lines
1.5 KiB
YAML
Raw Normal View History

2023-11-03 19:31:22 +01:00
---
depends_on:
- lint
2024-02-07 21:15:53 +01:00
clone:
git:
image: "woodpeckerci/plugin-git:2.5.2"
2024-02-07 21:15:53 +01:00
settings:
depth: 9999 # wird benötigt um die Commits zählen zu können
lfs: false
partial: false
steps:
2024-02-07 21:15:53 +01:00
set_variables:
build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein
image: "docker:27.1.1"
2024-02-07 21:15:53 +01:00
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
2024-02-17 15:35:52 +01:00
# https://unix.stackexchange.com/questions/748633/error-multiple-platforms-feature-is-currently-not-supported-for-docker-driver
- docker buildx create --use --platform=linux/amd64 --name multi-platform-builder
- docker buildx inspect --bootstrap
2024-02-07 21:15:53 +01:00
- |
docker buildx build \
--no-cache \
2024-02-17 15:35:52 +01:00
--platform=linux/amd64 \
--push \
--tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_SHA:0:8} \
--tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_BRANCH} \
--tag registry.mgrote.net/${CI_REPO_NAME}:latest \
--tag registry.mgrote.net/${CI_REPO_NAME}:$VERSION \
2024-02-07 21:15:53 +01:00
--label org.opencontainers.image.url=$CI_REPO_URL \
--label org.opencontainers.image.source=$CI_REPO_URL \
--label org.opencontainers.image.revision=$CI_COMMIT_SHA \
--label org.opencontainers.image.created=$DATE \
--file Dockerfile .
2024-02-06 20:17:33 +01:00
when:
- event: [push, pull_request, cron, manual]
2024-05-06 23:56:45 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-02-06 20:20:24 +01:00
...