Files
s5p/.gitea/workflows/ci.yaml
user 051c0ac719
All checks were successful
ci / secrets (push) Successful in 6s
ci / test (push) Successful in 21s
ci / build (push) Successful in 43s
fix: use podman --remote for builds via host socket
Building images inside an unprivileged container fails on remount.
Use podman --remote with the runner-mounted podman socket to
delegate builds to the host engine.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 07:39:19 +01:00

49 lines
1.5 KiB
YAML

name: ci
on:
push:
branches: [main]
jobs:
test:
runs-on: linux
container: python:3.13-alpine
steps:
- run: apk add --no-cache git
- run: |
git clone --depth 1 \
-c "http.extraHeader=Authorization: token ${{ github.token }}" \
"${{ github.server_url }}/${{ github.repository }}.git" .
- run: pip install --no-cache-dir -r requirements.txt ruff pytest
- run: ruff check src/ tests/
- run: PYTHONPATH=src pytest tests/ -v
secrets:
runs-on: linux
container: ghcr.io/gitleaks/gitleaks:latest
steps:
- run: |
git clone \
-c "http.extraHeader=Authorization: token ${{ github.token }}" \
"${{ github.server_url }}/${{ github.repository }}.git" .
- run: gitleaks detect --source . -v
build:
needs: [test, secrets]
runs-on: linux
container: quay.io/podman/stable
env:
CONTAINER_HOST: unix:///var/run/docker.sock
steps:
- run: dnf install -y git
- run: |
git clone --depth 1 \
-c "http.extraHeader=Authorization: token ${{ github.token }}" \
"${{ github.server_url }}/${{ github.repository }}.git" .
- run: echo "$HARBOR_PASS" | podman --remote login -u "$HARBOR_USER" --password-stdin harbor.mymx.me
env:
HARBOR_USER: ${{ secrets.HARBOR_USER }}
HARBOR_PASS: ${{ secrets.HARBOR_PASS }}
- run: podman --remote build -t harbor.mymx.me/s5p/s5p:latest -f Containerfile .
- run: podman --remote push harbor.mymx.me/s5p/s5p:latest