737b2fc3f2
unit-tests Bats test report
CI Main / Bats tests (push) Successful in 1m21s
ci-docker-build-push Docker build & push 0.2.9 OK
CI Main / Build & Push Docker (push) Successful in 40s
CI Main / Report Summary (push) Successful in 5s
CI Main / Move provider version tag (push) Successful in 12s
CI Main / Load example-gitea-env.conf to pipeline env (push) Successful in 18s
CI Main / Check existing artifact (push) Successful in 12s
acc-tests Cucumber test report
CI Main / Cucumber tests (push) Successful in 2m3s
Co-authored-by: moilanik <niko.moilanen@tietoevry.com> Reviewed-on: #22
100 lines
3.4 KiB
Bash
Executable File
100 lines
3.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SUITE_PATH="${1:-}"
|
|
|
|
[ -n "$SUITE_PATH" ] || { echo "ERROR: suite_path argument required" >&2; exit 1; }
|
|
[ -n "${GITEA_API_URL:-}" ] || { echo "ERROR: GITEA_API_URL is not set" >&2; exit 1; }
|
|
[ -n "${GIT_PAGES_URL:-}" ] || { echo "ERROR: GIT_PAGES_URL is not set" >&2; exit 1; }
|
|
[ -n "${GIT_PAGES_PUBLISH_TOKEN:-}" ] || { echo "ERROR: GIT_PAGES_PUBLISH_TOKEN is not set" >&2; exit 1; }
|
|
[ -n "${GITHUB_REPOSITORY:-}" ] || { echo "ERROR: GITHUB_REPOSITORY is not set" >&2; exit 1; }
|
|
[ -n "${GITHUB_SHA:-}" ] || { echo "ERROR: GITHUB_SHA is not set" >&2; exit 1; }
|
|
|
|
OWNER="${GITHUB_REPOSITORY%%/*}"
|
|
REPO="${GITHUB_REPOSITORY##*/}"
|
|
SHA8="${GITHUB_SHA:0:8}"
|
|
PAGES_USER="${GIT_PAGES_PUBLISH_USER:-publish}"
|
|
REPORT_DIR="reports/${SHA8}/${SUITE_PATH%/}"
|
|
REPORT_BASE="${GIT_PAGES_URL}/${OWNER}/${REPO}/reports/${SHA8}"
|
|
|
|
[ -d "$REPORT_DIR" ] || { echo "ERROR: not a directory: $REPORT_DIR" >&2; exit 1; }
|
|
|
|
PUBLISH_SITE_URL="${GIT_PAGES_URL}/"
|
|
|
|
WORK=$(mktemp -d)
|
|
TAR=$(mktemp)
|
|
trap 'rm -rf "$WORK" "$TAR"' EXIT
|
|
|
|
RELPATH="${REPORT_DIR#reports/${SHA8}/}"
|
|
if [ "$RELPATH" != "$REPORT_DIR" ] && [ -n "$RELPATH" ]; then
|
|
TARGET="$WORK/${OWNER}/${REPO}/reports/${SHA8}/${RELPATH}"
|
|
else
|
|
TARGET="$WORK/${OWNER}/${REPO}/reports/${SHA8}"
|
|
fi
|
|
mkdir -p "$TARGET"
|
|
cp -a "$REPORT_DIR/." "$TARGET/"
|
|
if [ ! -f "$TARGET/index.html" ]; then
|
|
items=()
|
|
while IFS= read -r -d '' f; do
|
|
items+=("$(basename "$f")")
|
|
done < <(find "$TARGET" -maxdepth 1 -type f ! -name index.html -print0 2>/dev/null || true)
|
|
while IFS= read -r -d '' d; do
|
|
name=$(basename "$d")
|
|
[ -f "$d/index.html" ] && items+=("$name")
|
|
done < <(find "$TARGET" -maxdepth 1 -type d ! -name . -print0 2>/dev/null || true)
|
|
|
|
if [ ${#items[@]} -gt 1 ]; then
|
|
{
|
|
echo '<!DOCTYPE html><html lang="en"><head><meta charset="utf-8">'
|
|
echo "<title>Test report ${SHA8}</title>"
|
|
echo '<style>body{font-family:sans-serif;margin:2em;max-width:960px}'
|
|
echo 'h1{color:#1e293b}ul{list-style:none;padding:0}'
|
|
echo 'li{margin:.5em 0;padding:.5em;background:#f8fafc;border-radius:6px}'
|
|
echo 'a{color:#2563eb;text-decoration:none}a:hover{text-decoration:underline}'
|
|
echo '</style></head><body>'
|
|
echo "<h1>Test report <code>${SHA8}</code></h1><ul>"
|
|
for item in "${items[@]}"; do
|
|
label="${item%.*}"
|
|
label="${label//-/ }"
|
|
label="${label//_/ }"
|
|
if [ -f "$TARGET/$item" ]; then
|
|
echo "<li><a href=\"$item\">${label^}</a></li>"
|
|
else
|
|
echo "<li><a href=\"$item/index.html\">${label^}</a></li>"
|
|
fi
|
|
done
|
|
echo '</ul></body></html>'
|
|
} > "$TARGET/index.html"
|
|
fi
|
|
fi
|
|
|
|
cat > "$TARGET/.meta" <<EOF
|
|
{"branch":"${GITHUB_REF_NAME:-}","sha":"${GITHUB_SHA}","published_at":"$(date -u +%Y-%m-%dT%H:%M:%SZ)"}
|
|
EOF
|
|
find "$WORK/$OWNER" \( -type f -o -type l \) -print | sed "s|^${WORK}/||" | tar -cf "$TAR" -C "$WORK" -T -
|
|
|
|
publish() {
|
|
local method="$1"
|
|
curl -sS -X "$method" "$PUBLISH_SITE_URL" \
|
|
-u "${PAGES_USER}:${GIT_PAGES_PUBLISH_TOKEN}" \
|
|
-H "Content-Type: application/x-tar" \
|
|
-H "Atomic: no" \
|
|
-H "Create-Parents: yes" \
|
|
--data-binary @"$TAR" \
|
|
-o /tmp/git-pages-publish-response.txt \
|
|
-w "%{http_code}"
|
|
}
|
|
|
|
HTTP_CODE=$(publish PATCH)
|
|
|
|
case "$HTTP_CODE" in
|
|
200|201|204) ;;
|
|
*)
|
|
echo "ERROR: git-pages publish HTTP ${HTTP_CODE}" >&2
|
|
cat /tmp/git-pages-publish-response.txt >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
echo "$REPORT_BASE"
|