Browse Source
feat(CI): Utilize low-resource pool for changes and summaries
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/43345/head
Joas Schilling
2 years ago
No known key found for this signature in database
GPG Key ID: C400AAF20C1BB6FC
25 changed files with
43 additions and
43 deletions
-
.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
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -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 }} |
|
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -74,7 +74,7 @@ jobs: |
|
|
|
docker logs ftp |
|
|
|
|
|
|
|
ftp-summary: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest-low |
|
|
|
needs: ftp-tests |
|
|
|
|
|
|
|
if: always() |
|
|
|
|
|
|
|
@ -91,7 +91,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
s3-primary-integration-summary: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest-low |
|
|
|
needs: [integration-s3-primary] |
|
|
|
|
|
|
|
if: always() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -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() |
|
|
|
|
|
|
|
@ -63,7 +63,7 @@ jobs: |
|
|
|
docker logs sftp |
|
|
|
|
|
|
|
sftp-summary: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest-low |
|
|
|
needs: sftp-tests |
|
|
|
|
|
|
|
if: always() |
|
|
|
|