eadf2cc2c5
New .gitea/workflows/release.yml:
- Triggers on push: tags: ['v*'] (deterministic)
- Job 'ci': checkout + install Go + install coreci binary +
coreci run (executes .coreci.yml: validate, build, test, release)
- Job 'container-orca': kaniko executor:debug with --entrypoint
/bin/sh, builds+pushes orca image (no DinD)
- Job 'container-traefik': same, builds+pushes orca-traefik image
(skips if Dockerfile.traefik absent at that tag)
- Uses PAT_TOKEN secret (Gitea reserves GITEA_ prefix)
.coreci.yml:
- Removed container-publish + container-publish-traefik steps
(moved to Gitea Actions — CoreCI's podman executor appends sh -c
which conflicts with kaniko's /kaniko/executor entrypoint)
- Keeps validate/build/test/release (tarball + Gitea release)
scripts/trigger_coreci.sh:
- Added tag ref handling (refs/tags/*) so pre-push hook triggers
CoreCI for tag pushes too (Gitea Actions webhook is secondary)
---ci---
project: orca
phase: 1
milestone: v0.15
status: execute
---/ci---
60 lines
2.1 KiB
Bash
Executable File
60 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# trigger_coreci.sh - Trigger CoreCI pipeline for the pushed branch
|
|
# Invoked by .githooks/pre-push
|
|
# Gracefully degrades if CoreCI API is unreachable (Gitea webhook is secondary path).
|
|
|
|
set -uo pipefail
|
|
|
|
# Source .env if present (provides GITEA_TOKEN)
|
|
# Look in repo root, then cwd, then script dir
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
for env_file in "$REPO_ROOT/.env" "$PWD/.env" "./.env"; do
|
|
if [ -f "$env_file" ]; then
|
|
set -a
|
|
# shellcheck disable=SC1090
|
|
. "$env_file"
|
|
set +a
|
|
break
|
|
fi
|
|
done
|
|
|
|
CORECI_URL="${CORECI_URL:-https://git.cloudinit.dev/coreci/coreci}"
|
|
GITEA_TOKEN="${GITEA_TOKEN:-}"
|
|
|
|
if [ -z "$GITEA_TOKEN" ]; then
|
|
echo " (skip: GITEA_TOKEN not set)"
|
|
exit 0
|
|
fi
|
|
|
|
while read local_ref local_sha remote_ref remote_sha; do
|
|
branch="${remote_ref#refs/heads/}"
|
|
if [ -z "$branch" ] || [ "$branch" = "HEAD" ]; then
|
|
# Check if this is a tag push (refs/tags/*)
|
|
tag="${remote_ref#refs/tags/}"
|
|
if [ -n "$tag" ] && [ "$tag" != "$remote_ref" ]; then
|
|
echo "→ Triggering CoreCI for tag: $tag (${local_sha:0:7})"
|
|
payload=$(printf '{"repo":"coreci/orca","branch":"%s","ref":"%s"}' "$tag" "$local_sha")
|
|
if command -v curl >/dev/null 2>&1; then
|
|
curl -fsS -X POST "${CORECI_URL}/api/pipeline/run" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
|
-H "Content-Type: application/json" \
|
|
-d "$payload" >/dev/null 2>&1 \
|
|
&& echo " ✓ CoreCI triggered" \
|
|
|| echo " (CoreCI trigger failed; Gitea Actions webhook is secondary path)"
|
|
fi
|
|
fi
|
|
continue
|
|
fi
|
|
echo "→ Triggering CoreCI for branch: $branch (${local_sha:0:7})"
|
|
payload=$(printf '{"repo":"coreci/orca","branch":"%s","ref":"%s"}' "$branch" "$local_sha")
|
|
if command -v curl >/dev/null 2>&1; then
|
|
curl -fsS -X POST "${CORECI_URL}/api/pipeline/run" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
|
-H "Content-Type: application/json" \
|
|
-d "$payload" >/dev/null 2>&1 \
|
|
&& echo " ✓ CoreCI triggered" \
|
|
|| echo " (CoreCI trigger failed; pipeline may run via webhook)"
|
|
fi
|
|
done
|