Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-01-21 16:40:14 +0300
committerGitHub <noreply@github.com>2022-01-21 16:40:14 +0300
commitedce987aad250fb30e6c89e9355e55bd6086192a (patch)
tree6ba1b84a5c7756bafd70657c91e1259570813eac
parent84f40a4c2e233d5a80bfe14ee9a1e45e1f510913 (diff)
parentd57cbcf82a5bad6b99765d5035fc79c7f8a57d2e (diff)
Merge pull request #695 from nextcloud/feat/integration-summary
-rw-r--r--.github/workflows/behat.yml18
-rw-r--r--.github/workflows/upgrade.yml4
2 files changed, 18 insertions, 4 deletions
diff --git a/.github/workflows/behat.yml b/.github/workflows/behat.yml
index fd73351..4e77a86 100644
--- a/.github/workflows/behat.yml
+++ b/.github/workflows/behat.yml
@@ -1,4 +1,4 @@
-name: Integration tests
+name: Integration
on:
pull_request:
@@ -8,14 +8,14 @@ on:
- production
jobs:
- php:
+ integration:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
- name: php${{ matrix.php-versions }}
+ name: php
steps:
- uses: actions/checkout@v2
@@ -33,3 +33,15 @@ jobs:
- name: Run behat
run: cd tests/integration && ../../vendor/bin/behat .
+
+ summary:
+ runs-on: ubuntu-latest
+ needs: integration
+
+ if: always()
+
+ name: integration-summary
+
+ steps:
+ - name: Summary status
+ run: if ${{ needs.integration.result != 'success' && needs.integration.result != 'skipped' }}; then exit 1; fi
diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml
index 26d05f6..dd401de 100644
--- a/.github/workflows/upgrade.yml
+++ b/.github/workflows/upgrade.yml
@@ -105,12 +105,14 @@ jobs:
cd nextcloud
php occ integrity:check-core
- upgrades-summary:
+ summary:
runs-on: ubuntu-latest
needs: [changes, upgrades]
if: always()
+ name: upgrades-summary
+
steps:
- name: Summary status
run: if ${{ needs.upgrades.result != 'success' && needs.upgrades.result != 'skipped' }}; then exit 1; fi