Michael Grote
73c15af7b4
ci: when hadolint: DL3047 chore(deps): update dependency jinja2 to v2.11.3 (#1) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> chore(deps): update dependency pykeepass to v4.1.0 (#2) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> Syntax Test chore(deps): update dependency jinja2 to v3.1.4 (#3) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> t d fdgh 3 r dd dff ff df ff dfdf ff todo dd dd ff ff chore(deps): update woodpeckerci/plugin-git docker tag to v2.5.1 (#5) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> pip extra pykeepass==4.0.3 ff ff f apackages dd ff ff ff --root-user-action--root-user-action dd ff ff ff gg ff chore(deps): update dependency ansible-dev-tools to v24.7.2 (#6) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> chore(deps): update dependency ansible-manage-lvm to v0.2.12 (#7) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> chore(deps): update dependency community.crypto to v2.21.1 (#8) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> chore(deps): update docker docker tag to v27.1.0 (#9) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> chore(deps): update dependency ansible_role_gitea to v3.5.0 (#10) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> ffd d chore(deps): update docker docker tag to v27.1.1 (#11) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> ff f dd dd ff dsfsa dd chore(deps): update dependency pykeepass to v4.1.0 (#12) Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net> H
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
---
|
|
depends_on:
|
|
- lint
|
|
|
|
clone:
|
|
git:
|
|
image: "woodpeckerci/plugin-git:2.5.1"
|
|
settings:
|
|
depth: 9999 # wird benötigt um die Commits zählen zu können
|
|
lfs: false
|
|
partial: false
|
|
|
|
steps:
|
|
set_variables:
|
|
image: "registry.mgrote.net/allzweckcontainer:latest"
|
|
commands:
|
|
# set version
|
|
- |
|
|
MAJOR="1"
|
|
MINOR="0"
|
|
PATCH="$(git rev-list --count "$CI_COMMIT_BRANCH")"
|
|
VERSION="v$MAJOR.$MINOR.$PATCH"
|
|
if [ "$CI_COMMIT_BRANCH" != "main" ] && [ "$CI_COMMIT_BRANCH" != "master" ]; then
|
|
VERSION=$VERSION-dev
|
|
fi
|
|
echo "VERSION=$VERSION" >> .variables
|
|
# set date
|
|
- |
|
|
DATE=$(date --iso-8601=seconds)
|
|
echo "DATE=$DATE" >> .variables
|
|
when:
|
|
- event: [push, pull_request, cron, manual]
|
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
|
|
|
build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein
|
|
image: "docker:27.1.1"
|
|
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/amd64 --name multi-platform-builder
|
|
- docker buildx inspect --bootstrap
|
|
- |
|
|
docker buildx build \
|
|
--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 \
|
|
--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:
|
|
- event: [push, pull_request, cron, manual]
|
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
|
...
|