Skip to content

Commit

Permalink
ci(integration): Print federation log file
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Dec 4, 2024
1 parent e1541fe commit 1c13dc3
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/integration-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,18 @@ jobs:
run: |
cat data/nextcloud.log
- name: Check Federation log
if: always()
id: check_federation_log
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: "data/tests-talk-real-federated-server/data/nextcloud.log"

- name: Print federation logs
if: always() && steps.check_federation_log.outputs.files_exists == 'true'
run: |
cat data/tests-talk-real-federated-server/data/nextcloud.log
summary:
permissions:
contents: none
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,18 @@ jobs:
run: |
cat data/nextcloud.log
- name: Check Federation log
if: always()
id: check_federation_log
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: "data/tests-talk-real-federated-server/data/nextcloud.log"

- name: Print federation logs
if: always() && steps.check_federation_log.outputs.files_exists == 'true'
run: |
cat data/tests-talk-real-federated-server/data/nextcloud.log
summary:
permissions:
contents: none
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration-oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,18 @@ jobs:
run: |
cat data/nextcloud.log
- name: Check Federation log
if: always()
id: check_federation_log
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: "data/tests-talk-real-federated-server/data/nextcloud.log"

- name: Print federation logs
if: always() && steps.check_federation_log.outputs.files_exists == 'true'
run: |
cat data/tests-talk-real-federated-server/data/nextcloud.log
summary:
permissions:
contents: none
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,18 @@ jobs:
run: |
cat data/nextcloud.log
- name: Check Federation log
if: always()
id: check_federation_log
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: "data/tests-talk-real-federated-server/data/nextcloud.log"

- name: Print federation logs
if: always() && steps.check_federation_log.outputs.files_exists == 'true'
run: |
cat data/tests-talk-real-federated-server/data/nextcloud.log
summary:
permissions:
contents: none
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,18 @@ jobs:
run: |
cat data/nextcloud.log
- name: Check Federation log
if: always()
id: check_federation_log
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: "data/tests-talk-real-federated-server/data/nextcloud.log"

- name: Print federation logs
if: always() && steps.check_federation_log.outputs.files_exists == 'true'
run: |
cat data/tests-talk-real-federated-server/data/nextcloud.log
summary:
permissions:
contents: none
Expand Down

0 comments on commit 1c13dc3

Please sign in to comment.