ci: new build step

This commit is contained in:
Michael Grote 2024-02-17 15:29:48 +01:00
parent 5d0513322e
commit 22acfcabeb

View file

@ -2,25 +2,56 @@
depends_on: depends_on:
- lint - lint
variables: # https://woodpecker-ci.org/docs/usage/advanced-usage clone:
- &VERSION 'v1.0.${CI_PIPELINE_NUMBER}' # wird für die Docker-Tags verwendet git:
image: "woodpeckerci/plugin-git:2.5.0"
settings:
depth: 9999 # wird benötigt um die Commits zählen zu können
lfs: false
partial: false
steps: steps:
docker_build_and_push_selfhosted: set_variables:
image: "woodpeckerci/plugin-docker-buildx:3.1.0" image: "registry.mgrote.net/allzweckcontainer:v1.1.102"
privileged: true commands:
settings: # set version
dockerfile: Dockerfile - |
repo: registry.mgrote.net/mdns-repeater-mikrotik MAJOR="1"
registry: registry.mgrote.net MINOR="1"
tags: PATCH="$(git rev-list --count "$CI_COMMIT_BRANCH")"
- *VERSION VERSION="v$MAJOR.$MINOR.$PATCH"
- ${CI_COMMIT_SHA:0:8} if [ "$CI_COMMIT_BRANCH" != "main" ] && [ "$CI_COMMIT_BRANCH" != "master" ]; then
- ${CI_COMMIT_BRANCH} VERSION=$VERSION-dev
- latest fi
platforms: echo "VERSION=$VERSION" >> .variables
- linux/arm64 # set date
- linux/amd64 - |
DATE=$(date --iso-8601=seconds)
echo "DATE=$DATE" >> .variables
build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein
image: "docker:25.0.3"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- cat .variables
- source .variables
# https://unix.stackexchange.com/questions/748633/error-multiple-platforms-feature-is-currently-not-supported-for-docker-driver
- docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-builder
- docker buildx inspect --bootstrap
- |
docker buildx build \
--platform=linux/arm64,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 \
--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 .
when: when:
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' - evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
... ...