ci: migrate workflows to Gitea Actions
CI / container-policy (push) Successful in 8s
CI / javascript-check (push) Successful in 18s
CI / python-tests (push) Failing after 4m44s
CI / container-verify (push) Skipped
CI / container-publish (push) Skipped

This commit is contained in:
BartelLuis
2026-09-14 20:23:20 +02:00
parent 06c3474636
commit 9c528c6eca
13 changed files with 472 additions and 303 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
#!/bin/sh
# Run tests in an isolated, disposable environment on a Linux Actions runner.
# Gitea Actions supplies the GitHub-compatible GITHUB_* runner variables.
set -eu
fail() {
@@ -13,7 +14,7 @@ fail() {
: "${GITHUB_JOB:?GITHUB_JOB is required}"
for run_identifier in "$GITHUB_RUN_ID" "$GITHUB_RUN_ATTEMPT"; do
case "$run_identifier" in
''|*[!0-9]*) fail 'GitHub run ID and attempt must be numeric' ;;
''|*[!0-9]*) fail 'Actions run ID and attempt must be numeric' ;;
esac
done
case "$GITHUB_JOB" in