Compare commits
1 Commits
cdd3964e6b
...
4a006d27c5
Author | SHA1 | Date | |
---|---|---|---|
4a006d27c5 |
@ -86,7 +86,4 @@ jobs:
|
|||||||
branch: ${{ github.head_ref || github.ref_name }}
|
branch: ${{ github.head_ref || github.ref_name }}
|
||||||
build:
|
build:
|
||||||
needs: Lint
|
needs: Lint
|
||||||
uses: ./.gitea/workflows/on_called_build.yml
|
uses: ./.gitea/workflows/common_build.yml
|
||||||
test:
|
|
||||||
needs: build
|
|
||||||
uses: ./.gitea/workflows/on_called_to_test.yml
|
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_run:
|
||||||
|
workflows: [ Master, PR ]
|
||||||
|
types: [ completed ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
integrationTests:
|
integrationTests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -83,3 +86,8 @@ jobs:
|
|||||||
if: steps.check-android-changes.outputs.any_modified == 'true' || failure()
|
if: steps.check-android-changes.outputs.any_modified == 'true' || failure()
|
||||||
run: |
|
run: |
|
||||||
docker compose -f .gitea/workflows/assets/docker-compose.yml stop
|
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'
|
Loading…
x
Reference in New Issue
Block a user