Skip to content

Commit f3a949e

Browse files
authored
Merge pull request #1663 from nextcloud/backport/1660/stable0.8
[stable0.8] ci: add summaries for cypress and integration tests
2 parents b0cc65e + 8b7ebb3 commit f3a949e

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/cypress-custom.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,17 @@ jobs:
170170
name: Upload nextcloud log ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
171171
path: data/nextcloud.log
172172
retention-days: 5
173+
174+
summary:
175+
permissions:
176+
contents: none
177+
runs-on: ubuntu-latest-low
178+
needs: cypress
179+
180+
if: always()
181+
182+
name: cypress-summary
183+
184+
steps:
185+
- name: Summary status
186+
run: if ${{ needs.cypress.result != 'success' && needs.cypress.result != 'skipped' }}; then exit 1; fi

.github/workflows/integration.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,17 @@ jobs:
166166
body: comment
167167
})
168168
}
169+
170+
summary:
171+
permissions:
172+
contents: none
173+
runs-on: ubuntu-latest-low
174+
needs: integration
175+
176+
if: always()
177+
178+
name: integration-summary
179+
180+
steps:
181+
- name: Summary status
182+
run: if ${{ needs.integration.result != 'success' && needs.integration.result != 'skipped' }}; then exit 1; fi

0 commit comments

Comments
 (0)