Files
vacationplanner2ics/.gitea/workflows/ci.yml
T
2026-09-10 20:47:55 +04:00

106 lines
3.7 KiB
YAML

name: CI
on:
push:
branches: [master]
tags: ['v*']
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ gitea.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
name: Test and publish
runs-on: ubuntu-latest
timeout-minutes: 30
env:
IMAGE: code.popov.link/valentineus/vacationplanner2ics
TEST_IMAGE: vacationplanner2ics-test:ci-${{ gitea.run_id }}
RUNTIME_IMAGE: vacationplanner2ics-runtime:ci-${{ gitea.run_id }}
SMOKE_CONTAINER: vacationplanner2ics-ci-${{ gitea.run_id }}
REVISION: ${{ gitea.sha }}
REF: ${{ gitea.ref }}
DOCKER_BUILDKIT: '1'
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Check Docker
run: docker version
- name: Check formatting, lint and build the release binary
run: docker build --target test --tag "$TEST_IMAGE" .
- name: Run E2E tests without network access
run: >-
docker run --rm --network none --read-only
--cap-drop ALL --security-opt no-new-privileges
--memory 256m --cpus 2 --pids-limit 128 "$TEST_IMAGE"
- name: Build the runtime image from the tested binary
run: >-
docker build --target runtime
--label "org.opencontainers.image.revision=$REVISION"
--tag "$RUNTIME_IMAGE" .
- name: Smoke-test the runtime image
run: |
set -eu
docker run -d --name "$SMOKE_CONTAINER" --network none --read-only \
--cap-drop ALL --security-opt no-new-privileges \
--memory 32m --cpus 1 --pids-limit 64 "$RUNTIME_IMAGE"
docker run --rm --network "container:$SMOKE_CONTAINER" --read-only \
--cap-drop ALL --security-opt no-new-privileges "$TEST_IMAGE" python -c '
import time, urllib.request
for attempt in range(50):
try:
with urllib.request.urlopen("http://127.0.0.1:8080/healthz", timeout=1) as response:
assert response.status == 200 and response.read() == b"ok"
break
except OSError:
if attempt == 49:
raise
time.sleep(0.1)
print("Runtime HTTP smoke test passed")'
docker image inspect --format 'Image size: {{.Size}} bytes' "$RUNTIME_IMAGE"
docker stats --no-stream --format 'Memory: {{.MemUsage}}; CPU: {{.CPUPerc}}' "$SMOKE_CONTAINER"
docker stop --time 5 "$SMOKE_CONTAINER"
test "$(docker inspect --format '{{.State.ExitCode}}' "$SMOKE_CONTAINER")" = 0
- name: Publish to Gitea Container Registry
if: >-
gitea.event_name != 'pull_request' &&
(gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags/v'))
env:
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
run: |
set -eu
if [ -z "$REGISTRY_TOKEN" ]; then
echo 'Add the REGISTRY_TOKEN Actions secret: a valentineus PAT with write:package.' >&2
exit 1
fi
export DOCKER_CONFIG
DOCKER_CONFIG="$(mktemp -d)"
trap 'rm -rf "$DOCKER_CONFIG"' EXIT
printf '%s' "$REGISTRY_TOKEN" | docker login code.popov.link --username valentineus --password-stdin
if [ "$REF" = refs/heads/master ]; then
TAG=latest
else
TAG="${REF#refs/tags/v}"
fi
docker tag "$RUNTIME_IMAGE" "$IMAGE:$TAG"
docker push "$IMAGE:$TAG"
- name: Remove temporary containers and image tags
if: always()
run: |
docker rm -f "$SMOKE_CONTAINER" 2>/dev/null || true
docker image rm "$TEST_IMAGE" "$RUNTIME_IMAGE" 2>/dev/null || true