diff options
author | Joas Schilling <coding@schilljs.com> | 2024-08-27 17:49:12 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-08-27 17:49:12 +0200 |
commit | 5129e5ad3068b44b8c7eca34141b1f3e6b8ec779 (patch) | |
tree | 018f6d7078fd55a90ca50d22368e14a1b8f57e33 /.github | |
parent | 364ddf049c9611fa6802958b9e2cfc832227cb3d (diff) | |
download | nextcloud-server-5129e5ad3068b44b8c7eca34141b1f3e6b8ec779.tar.gz nextcloud-server-5129e5ad3068b44b8c7eca34141b1f3e6b8ec779.zip |
ci: Don't run things normally and with coverage flag on the same configuration
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/object-storage-azure.yml | 2 | ||||
-rw-r--r-- | .github/workflows/object-storage-s3.yml | 2 | ||||
-rw-r--r-- | .github/workflows/object-storage-swift.yml | 2 | ||||
-rw-r--r-- | .github/workflows/phpunit-memcached.yml | 2 | ||||
-rw-r--r-- | .github/workflows/phpunit-nodb.yml | 2 | ||||
-rw-r--r-- | .github/workflows/phpunit-sqlite.yml | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/object-storage-azure.yml b/.github/workflows/object-storage-azure.yml index bb1dc52a9ad..3dd34f84e5b 100644 --- a/.github/workflows/object-storage-azure.yml +++ b/.github/workflows/object-storage-azure.yml @@ -45,7 +45,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2'] include: - php-versions: '8.3' coverage: true diff --git a/.github/workflows/object-storage-s3.yml b/.github/workflows/object-storage-s3.yml index b256174c061..39864367321 100644 --- a/.github/workflows/object-storage-s3.yml +++ b/.github/workflows/object-storage-s3.yml @@ -45,7 +45,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2'] include: - php-versions: '8.3' coverage: true diff --git a/.github/workflows/object-storage-swift.yml b/.github/workflows/object-storage-swift.yml index 9f7bc8c2806..401a7f5af53 100644 --- a/.github/workflows/object-storage-swift.yml +++ b/.github/workflows/object-storage-swift.yml @@ -45,7 +45,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2'] include: - php-versions: '8.3' coverage: true diff --git a/.github/workflows/phpunit-memcached.yml b/.github/workflows/phpunit-memcached.yml index 51987dda27f..69b5dd7d8f0 100644 --- a/.github/workflows/phpunit-memcached.yml +++ b/.github/workflows/phpunit-memcached.yml @@ -55,7 +55,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.3'] include: - php-versions: '8.2' coverage: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/phpunit-nodb.yml b/.github/workflows/phpunit-nodb.yml index 8eed603277c..4e8529e35a6 100644 --- a/.github/workflows/phpunit-nodb.yml +++ b/.github/workflows/phpunit-nodb.yml @@ -57,7 +57,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.3'] include: - php-versions: '8.2' coverage: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index 12a65fb852b..582f3bc5b85 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -55,7 +55,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.2', '8.3'] include: - php-versions: '8.1' coverage: ${{ github.event_name != 'pull_request' }} |