Public Access
Post-merge / detect-type (push) Successful in 10s
Post-merge / validate-commit-msg (push) Successful in 10s
Build Images / detect-type (push) Successful in 34s
Post-merge / release (push) Successful in 28s
Post-merge / sync-wiki (push) Successful in 23s
Post-merge / vikunja (push) Successful in 18s
Post-merge / configure-repo (push) Successful in 13s
Post-merge / badges (push) Successful in 44s
Post-merge / publish (push) Successful in 18s
Build Images / build-and-push (push) Successful in 3m45s
Build Images / cleanup (push) Successful in 2m17s
31 lines
1.3 KiB
Docker
31 lines
1.3 KiB
Docker
# ci-full — heaviest image, includes everything for release, molecule, deploy.
|
|
#
|
|
# Used by: release, publish, release-dry-run, molecule-tests,
|
|
# provision-infra, deploy-observability, provision-zitadel,
|
|
# deploy-customer, integration-tests
|
|
#
|
|
# Layers on top of ci-quality: adds release tools, molecule, deploy deps,
|
|
# git-cliff, and OpenTofu.
|
|
|
|
FROM git.oblachno.oblachno.fyi/oblachno-oss/runner-images/ci-quality:latest
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Install rsync (required by molecule_docker for file sync between host and test containers)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends rsync \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install devx[release,molecule,deploy] from local source
|
|
COPY . /tmp/devx
|
|
RUN pip install --no-cache-dir /tmp/devx[release,molecule,deploy] \
|
|
&& rm -rf /tmp/devx
|
|
|
|
# Install git-cliff (changelog generator for release job)
|
|
RUN python3 -m devx.tools.install_tools --tool git-cliff
|
|
|
|
# Install OpenTofu (for infra deploy jobs)
|
|
RUN ARCH=$(uname -m | sed 's/x86_64/amd64/') \
|
|
&& VERSION=1.12.3 \
|
|
&& curl -fsSL "https://github.com/opentofu/opentofu/releases/download/v${VERSION}/tofu_${VERSION}_$(uname -s | tr '[:upper:]' '[:lower:]')_${ARCH}.tar.gz" \
|
|
| tar -xz -C /usr/local/bin tofu
|