]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat(CI): Utilize low-resource pool for changes and summaries 43345/head
authorJoas Schilling <coding@schilljs.com>
Mon, 5 Feb 2024 09:08:06 +0000 (10:08 +0100)
committerJoas Schilling <coding@schilljs.com>
Mon, 5 Feb 2024 09:08:06 +0000 (10:08 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
25 files changed:
.github/workflows/block-merge-eol.yml
.github/workflows/block-merge-freeze.yml
.github/workflows/dependabot-approve-merge.yml
.github/workflows/files-external-s3.yml
.github/workflows/files-external-webdav.yml
.github/workflows/fixup.yml
.github/workflows/ftp.yml
.github/workflows/integration-s3-primary.yml
.github/workflows/integration-sqlite.yml
.github/workflows/lint-eslint.yml
.github/workflows/lint-php-cs.yml
.github/workflows/lint-php.yml
.github/workflows/node-tests.yml
.github/workflows/node.yml
.github/workflows/object-storage-azure.yml
.github/workflows/object-storage-s3.yml
.github/workflows/object-storage-swift.yml
.github/workflows/phpunit-mariadb.yml
.github/workflows/phpunit-memcached.yml
.github/workflows/phpunit-mysql.yml
.github/workflows/phpunit-nodb.yml
.github/workflows/phpunit-oci.yml
.github/workflows/phpunit-pgsql.yml
.github/workflows/phpunit-sqlite.yml
.github/workflows/sftp.yml

index 8c7653eac9e0aa2942511741fdb9614de11f1f29..5f34853bab71d71989c0a69ac70b1be095584b35 100644 (file)
@@ -20,7 +20,7 @@ jobs:
 
     # Only run on stableXX branches
     if: startsWith( github.base_ref, 'stable')
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     steps:
       - name: Download updater config
index f2d029c9927c82240662dd62c0189370084fb73e..11f8b9e37d1a65dcf1cc5be7254a338e32b06992 100644 (file)
@@ -22,7 +22,7 @@ jobs:
 
     if: github.event.pull_request.draft == false
 
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     steps:
       - name: Download version.php from ${{ github.base_ref }}
index 9951547f76aeccd2679235b0ec95f0362786bf20..00b019613f528545547b483887cd717c71a084cc 100644 (file)
@@ -22,7 +22,7 @@ concurrency:
 jobs:
   auto-approve-merge:
     if: github.actor == 'dependabot[bot]'
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     permissions:
       # for hmarr/auto-approve-action to approve PRs
       pull-requests: write
index 7efdde88da8b3557f34ee88e287bfb884107a940..cf60e87d00047f100e7d5576f25d9216ffe79557 100644 (file)
@@ -10,7 +10,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -176,7 +176,7 @@ jobs:
           docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
 
   s3-external-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, files-external-s3-minio, files-external-s3-localstack]
 
     if: always()
index 18b7b0cfb3971a2185dbd625e13fc2b43e0b15da..4effb64c20e8bdef13a24bf9fe5164f6b2f7e8da 100644 (file)
@@ -10,7 +10,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -96,7 +96,7 @@ jobs:
           flags: phpunit-files-external-webdav
 
   files-external-webdav-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, files-external-webdav-apache]
 
     if: always()
index 9548d19f2d5cdb9e2c9a694521bc287670f3bed5..98d49927ab8582fb45b3acb0290b7bfa40bc035e 100644 (file)
@@ -24,7 +24,7 @@ jobs:
       pull-requests: write
     name: Block fixup and squash commits
 
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     steps:
       - name: Run check
index ffa2722d34207bdefae297f4e9157a8f710c56c7..cddb92ae94b62970b93a2b4712169cfbb40f6d51 100644 (file)
@@ -74,7 +74,7 @@ jobs:
           docker logs ftp
 
   ftp-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: ftp-tests
 
     if: always()
index 618129c3de9b84f9ca926f4356455bf2130fef65..ba43cb4710e18a812acf567d0053ea39994a0b33 100644 (file)
@@ -91,7 +91,7 @@ jobs:
 
 
   s3-primary-integration-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [integration-s3-primary]
 
     if: always()
index 2c931007a8404fc806a382cdf4ee97137d494769..e2d531561214fe825de629d6a7e989a516991469 100644 (file)
@@ -17,7 +17,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       # FIXME src: ${{ steps.changes.outputs.src}}
@@ -155,7 +155,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, integration-sqlite]
 
     if: always()
index aa53d8dee6951cb9523510ba1c44db0ae2b61216..0f984d69685f6867b697efc9829bc586180e6edb 100644 (file)
@@ -20,7 +20,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -83,7 +83,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, lint]
 
     if: always()
index 73bcc76c43cf7d7be8006a318ffe2acc5fd8df17..9b12695cf20e3c6670c902c4279c95e7b55faa3f 100644 (file)
@@ -16,7 +16,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -65,7 +65,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, lint]
 
     if: always()
index 6e3587c190de0f605a7e95314c1c6d88a69bdda0..00a7286508c88474f8696f7fda0040aa16191cf2 100644 (file)
@@ -17,7 +17,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -70,7 +70,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, lint]
 
     if: always()
index 92e8f46f5f5652ae5ac4b67a27dddb0bc762782d..ca5e2410810978aabce09eeb004bd1af2237ed7f 100644 (file)
@@ -11,7 +11,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -157,7 +157,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, test, jsunit, handlebars]
 
     if: always()
index 4b71db36fead95f89661065e19f525935d4a7e68..dca5d6dc8ce64648117958744427912d3bc48974 100644 (file)
@@ -17,7 +17,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -87,7 +87,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, build]
 
     if: always()
index cb62ad12a985ed4cb597b4fc46a0acecc59836db..808147bff70c9d625e9ec8f1b532ea450c0db5dc 100644 (file)
@@ -10,7 +10,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -115,7 +115,7 @@ jobs:
           docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
 
   azure-primary-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, azure-primary-tests]
 
     if: always()
index 24f196cd9098bd5326ebf7abdf2fbc2380c0d7f7..991e6d16fdb2dada9cf1bcf9eaf9aab0d3e36402 100644 (file)
@@ -10,7 +10,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -121,7 +121,7 @@ jobs:
           docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
 
   s3-primary-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes,s3-primary-tests-minio]
 
     if: always()
index ec189101bed023043591a0c0fa8330cc7ad772b4..e27e59c0c35c5351c9691488abcfb1ee60d19c0d 100644 (file)
@@ -10,7 +10,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -111,7 +111,7 @@ jobs:
           docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
 
   swift-primary-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes,swift-primary-tests]
 
     if: always()
index 523ba26fbda5fb9bdff885a7d67c79965e8e24de..d4bbb7542f085883835b4ac746c6b3f2f506432b 100644 (file)
@@ -19,7 +19,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -132,7 +132,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-mariadb]
 
     if: always()
index 04be6b01c1244ec6a955fe715dbbf55cf191e8ec..92b90457d53bc4621e986db44c2b267816e838af 100644 (file)
@@ -19,7 +19,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src}}
@@ -111,7 +111,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-memcached]
 
     if: always()
index a04e7ba827d33d3e66aaf5123e0ba372c41e5aa9..f0f6b6c90ef40a53aa1e8e505a339146d2defdec 100644 (file)
@@ -19,7 +19,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src }}
@@ -132,7 +132,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-mysql]
 
     if: always()
index f35c57e78c12fe2e3920e55bb67e4afffd6901c3..d9661448d35d6324dec33c537df416cdec0bff6f 100644 (file)
@@ -20,7 +20,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src }}
@@ -115,7 +115,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-nodb]
 
     if: always()
index bb7da893cab61bb0d874b0d0c3371605286f47d0..3346852574f65646adf47451aef24119bc86c127 100644 (file)
@@ -14,7 +14,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src }}
@@ -128,7 +128,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-oci]
 
     if: always()
index f5512aa33d730fac6aacbb063624bf2d58b68c2c..a4bb9c014eb3c7cdeefeb1072499cf66d411d0ee 100644 (file)
@@ -19,7 +19,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src }}
@@ -131,7 +131,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-pgsql]
 
     if: always()
index 38ac2bca54455cb68e5596fbe5d23c1e53a54a43..e9f7dd2f277924c04f4bd4217a06ff4af7412fca 100644 (file)
@@ -19,7 +19,7 @@ concurrency:
 
 jobs:
   changes:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
 
     outputs:
       src: ${{ steps.changes.outputs.src }}
@@ -115,7 +115,7 @@ jobs:
   summary:
     permissions:
       contents: none
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: [changes, phpunit-sqlite]
 
     if: always()
index d1f8a60c6a11f32028fae138c7718372cfebb6e7..1de9113bd8ca64b97d69a1db5e25b53c849b287e 100644 (file)
@@ -63,7 +63,7 @@ jobs:
           docker logs sftp
 
   sftp-summary:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-latest-low
     needs: sftp-tests
 
     if: always()