aboutsummaryrefslogtreecommitdiffstats
path: root/.woodpecker/build.yml
blob: b83db629e481fc1a85496b601bfc4cd58185c376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
depends_on:
  - lint

clone:
  git:
    image: "woodpeckerci/plugin-git:2.5.2"
    settings:
      depth: 9999 # wird benötigt um die Commits zählen zu können
      lfs: false
      partial: false

steps:
  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:
      # 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 \
        --no-cache \
        --platform=linux/amd64 \
        --push \
        --tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_BRANCH} \
        --tag registry.mgrote.net/${CI_REPO_NAME}:latest \
        --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"'
...

# händisch:
# docker build . -t registry.mgrote.net/allzweckcontainer:latest
# docker push registry.mgrote.net/allzweckcontainer:latest