Compare commits

..

1 Commits

Author SHA1 Message Date
4a006d27c5 ci: Instrumentation tests coverage in ci.
Some checks failed
PR / PR (pull_request) Successful in 52s
PR / translations (pull_request) Successful in 51s
PR / build (pull_request) Failing after 2s
2025-03-30 13:43:42 +02:00
2 changed files with 10 additions and 5 deletions

View File

@ -86,7 +86,4 @@ jobs:
branch: ${{ github.head_ref || github.ref_name }}
build:
needs: Lint
uses: ./.gitea/workflows/on_called_build.yml
test:
needs: build
uses: ./.gitea/workflows/on_called_to_test.yml
uses: ./.gitea/workflows/common_build.yml

View File

@ -1,9 +1,12 @@
on:
workflow_call:
workflow_run:
workflows: [ Master, PR ]
types: [ completed ]
jobs:
integrationTests:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
@ -83,3 +86,8 @@ jobs:
if: steps.check-android-changes.outputs.any_modified == 'true' || failure()
run: |
docker compose -f .gitea/workflows/assets/docker-compose.yml stop
nothingToDo:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- run: echo 'The triggering workflow failed'