aedsvg<sDV
CI / Load gitea-env.conf to pipeline env (push) Successful in 12s
ci-check-running Checking version...
ci-check Build version 0.1.0 required
ci-cucumber Cucumber tests
CI / Build & Push Artifact (push) Failing after 1m21s

This commit is contained in:
moilanik
2026-06-14 14:01:23 +03:00
parent b6c4d5ae4f
commit 95f0aca47e
-5
View File
@@ -43,10 +43,8 @@ jobs:
if: always() if: always()
run: | run: |
if [ "${{ steps.validate.outcome }}" = "success" ]; then if [ "${{ steps.validate.outcome }}" = "success" ]; then
bash .ci/scripts/report-status.sh success "Validating CI config..." ci-validate-running
bash .ci/scripts/report-status.sh success "CI config valid" ci-validate bash .ci/scripts/report-status.sh success "CI config valid" ci-validate
else else
bash .ci/scripts/report-status.sh failure "Validating CI config..." ci-validate-running
bash .ci/scripts/report-status.sh failure "CI validation FAILED" ci-validate bash .ci/scripts/report-status.sh failure "CI validation FAILED" ci-validate
exit 1 exit 1
fi fi
@@ -89,10 +87,8 @@ jobs:
if: always() if: always()
run: | run: |
if [ "${BATS_EXIT}" = "0" ]; then if [ "${BATS_EXIT}" = "0" ]; then
bash .ci/scripts/report-status.sh success "Running Bats tests..." ci-bats-running
bash .ci/scripts/report-status.sh success "Bats tests OK" ci-bats bats bash .ci/scripts/report-status.sh success "Bats tests OK" ci-bats bats
else else
bash .ci/scripts/report-status.sh failure "Running Bats tests..." ci-bats-running
bash .ci/scripts/report-status.sh failure "Bats tests FAILED" ci-bats bats bash .ci/scripts/report-status.sh failure "Bats tests FAILED" ci-bats bats
fi fi
@@ -131,7 +127,6 @@ jobs:
if: always() if: always()
run: | run: |
if [ "${CUCUMBER_EXIT}" = "0" ]; then if [ "${CUCUMBER_EXIT}" = "0" ]; then
bash .ci/scripts/report-status.sh success "Running Cucumber tests..." ci-cucumber-running
if [ -f "reports/${GITHUB_SHA:0:8}/cucumber/index.html" ]; then if [ -f "reports/${GITHUB_SHA:0:8}/cucumber/index.html" ]; then
bash .ci/scripts/report-status.sh success "Cucumber tests OK" ci-cucumber cucumber bash .ci/scripts/report-status.sh success "Cucumber tests OK" ci-cucumber cucumber
else else