testiä (#39)
ci-helm-build-push Helm push 0.1.7
CI Git-Pages Main / Build & Push Helm chart (push) Successful in 51s
CI Git-Pages Main / Report Summary (push) Successful in 6s
unit-tests Bats test report
CI Main / Bats tests (push) Successful in 1m40s
acc-tests Cucumber test report
CI Main / Cucumber tests (push) Successful in 1m48s
CI Git-Pages Main / Config load (push) Successful in 22s
CI Main / Config load (push) Successful in 24s
CI Main / Latest versio (push) Successful in 25s
CI Git-Pages Main / Latest version (push) Successful in 24s
CI Git-Pages Main / GitOps (push) Failing after 20s
ci-docker-build-push Docker push 0.2.27
CI Main / Build & Push Docker (push) Successful in 41s
CI Main / GitOps (push) Failing after 18s
CI Main / Move provider version tag (push) Has been skipped
CI Main / Report Summary (push) Successful in 6s
ci-helm-build-push Helm push 0.1.7
CI Git-Pages Main / Build & Push Helm chart (push) Successful in 51s
CI Git-Pages Main / Report Summary (push) Successful in 6s
unit-tests Bats test report
CI Main / Bats tests (push) Successful in 1m40s
acc-tests Cucumber test report
CI Main / Cucumber tests (push) Successful in 1m48s
CI Git-Pages Main / Config load (push) Successful in 22s
CI Main / Config load (push) Successful in 24s
CI Main / Latest versio (push) Successful in 25s
CI Git-Pages Main / Latest version (push) Successful in 24s
CI Git-Pages Main / GitOps (push) Failing after 20s
ci-docker-build-push Docker push 0.2.27
CI Main / Build & Push Docker (push) Successful in 41s
CI Main / GitOps (push) Failing after 18s
CI Main / Move provider version tag (push) Has been skipped
CI Main / Report Summary (push) Successful in 6s
Co-authored-by: moilanik <niko.moilanen@tietoevry.com> Reviewed-on: #39
This commit was merged in pull request #39.
This commit is contained in:
@@ -49,7 +49,7 @@ jobs:
|
|||||||
|
|
||||||
report-summary:
|
report-summary:
|
||||||
name: Report Summary
|
name: Report Summary
|
||||||
needs: [load-config, helm-push, chart-gitops]
|
needs: [load-config, check-version, helm-push, chart-gitops]
|
||||||
if: always()
|
if: always()
|
||||||
uses: niko/gitea-ci-library/.gitea/workflows/report-summary.yml@main
|
uses: niko/gitea-ci-library/.gitea/workflows/report-summary.yml@main
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo "gitops-dispatch: validating env vars..."
|
||||||
: "${GITOPS_FILE:?}"
|
: "${GITOPS_FILE:?}"
|
||||||
: "${GITOPS_YQ_TPL:?}"
|
: "${GITOPS_YQ_TPL:?}"
|
||||||
: "${GITOPS_VERSION:?}"
|
: "${GITOPS_VERSION:?}"
|
||||||
@@ -11,8 +12,7 @@ set -euo pipefail
|
|||||||
: "${GITEA_API_URL:?}"
|
: "${GITEA_API_URL:?}"
|
||||||
: "${GITEA_TOKEN:?}"
|
: "${GITEA_TOKEN:?}"
|
||||||
|
|
||||||
TIMEOUT="${GITOPS_DISPATCH_TIMEOUT:-30}"
|
echo "gitops-dispatch: constructing inputs..."
|
||||||
|
|
||||||
INPUTS=$(jq -nc \
|
INPUTS=$(jq -nc \
|
||||||
--arg file "$GITOPS_FILE" \
|
--arg file "$GITOPS_FILE" \
|
||||||
--arg yq_tpl "$GITOPS_YQ_TPL" \
|
--arg yq_tpl "$GITOPS_YQ_TPL" \
|
||||||
@@ -23,6 +23,7 @@ INPUTS=$(jq -nc \
|
|||||||
'{file: $file, yq_tpl: $yq_tpl, version: $version, source_repo: $source_repo, source_commit: $source_commit, git_tag_prefix: $git_tag_prefix}')
|
'{file: $file, yq_tpl: $yq_tpl, version: $version, source_repo: $source_repo, source_commit: $source_commit, git_tag_prefix: $git_tag_prefix}')
|
||||||
|
|
||||||
DIR="$(cd "$(dirname "$0")" && pwd)"
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||||
|
echo "gitops-dispatch: dispatching to $GITOPS_REPO/$GITOPS_WORKFLOW..."
|
||||||
set +e
|
set +e
|
||||||
OUTPUT=$(bash "$DIR/dispatch-workflow.sh" \
|
OUTPUT=$(bash "$DIR/dispatch-workflow.sh" \
|
||||||
"$GITOPS_REPO" "$GITOPS_WORKFLOW" "main" \
|
"$GITOPS_REPO" "$GITOPS_WORKFLOW" "main" \
|
||||||
@@ -30,7 +31,9 @@ OUTPUT=$(bash "$DIR/dispatch-workflow.sh" \
|
|||||||
EXIT=$?
|
EXIT=$?
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
echo "=== DISPATCH OUTPUT (exit=$EXIT) ==="
|
||||||
echo "$OUTPUT"
|
echo "$OUTPUT"
|
||||||
|
echo "=== END DISPATCH ==="
|
||||||
|
|
||||||
STATUS="failure"
|
STATUS="failure"
|
||||||
GITOPS_SHA=""
|
GITOPS_SHA=""
|
||||||
|
|||||||
Reference in New Issue
Block a user