2023-08-24 20:56:04 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: build
|
2023-10-16 12:15:38 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 20:56:04 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry build
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: dryrun
|
2023-12-07 08:50:02 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:2
|
2023-08-24 20:56:04 +00:00
|
|
|
settings:
|
|
|
|
containerfile: Containerfile.multiarch
|
|
|
|
dry_run: true
|
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
provenance: false
|
|
|
|
repo: ${CI_REPO}
|
|
|
|
when:
|
|
|
|
- event: [pull_request]
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: publish-dockerhub
|
2023-12-07 08:50:02 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:2
|
2023-12-23 22:25:22 +00:00
|
|
|
group: container
|
2023-08-24 20:56:04 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
containerfile: Containerfile.multiarch
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
provenance: false
|
|
|
|
repo: ${CI_REPO}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: publish-quay
|
2023-12-07 08:50:02 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:2
|
2023-12-23 22:25:22 +00:00
|
|
|
group: container
|
2023-08-24 20:56:04 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
containerfile: Containerfile.multiarch
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
provenance: false
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/${CI_REPO}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- lint
|
|
|
|
- test
|