From 930a170d760986ba09e577c4b2d0aa4aa6d277dd Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 5 Nov 2025 13:59:18 +0100 Subject: [PATCH 1/3] ci(trino): Use Ubicloud runners only Since building Vector from source, we seem to run out of disk space on the included GitHub runners. As such, we now only use the larger Ubicloud runners to build Trino. --- .github/workflows/build_trino.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_trino.yaml b/.github/workflows/build_trino.yaml index f6121bb89..0726f33bd 100644 --- a/.github/workflows/build_trino.yaml +++ b/.github/workflows/build_trino.yaml @@ -6,7 +6,7 @@ run-name: | on: workflow_dispatch: schedule: - - cron: '0 0 2/2 * *' # https://crontab.guru/#0_0_2/2_*_* + - cron: "0 0 2/2 * *" # https://crontab.guru/#0_0_2/2_*_* push: branches: [main] tags: @@ -35,3 +35,4 @@ jobs: product-name: trino sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }} registry-namespace: sdp + runners: ubicloud From 5bf8caacb0c5ee766537cecf325d1e7b31db6cb0 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 5 Nov 2025 14:54:39 +0100 Subject: [PATCH 2/3] chore: Apply suggestion Co-authored-by: Sebastian Bernauer --- .github/workflows/build_trino.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_trino.yaml b/.github/workflows/build_trino.yaml index 0726f33bd..752f37eda 100644 --- a/.github/workflows/build_trino.yaml +++ b/.github/workflows/build_trino.yaml @@ -35,4 +35,5 @@ jobs: product-name: trino sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }} registry-namespace: sdp + # We have a too high disk usage for GitHub runners runners: ubicloud From 5c251e792cd458b003d15a494ab3bb42c6c1aa37 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 5 Nov 2025 14:56:37 +0100 Subject: [PATCH 3/3] chore: Adjust comment --- .github/workflows/build_trino.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_trino.yaml b/.github/workflows/build_trino.yaml index 752f37eda..7c2300dad 100644 --- a/.github/workflows/build_trino.yaml +++ b/.github/workflows/build_trino.yaml @@ -35,5 +35,6 @@ jobs: product-name: trino sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }} registry-namespace: sdp - # We have a too high disk usage for GitHub runners + # Since building Vector from source, this build runs out of disk space. + # As such, we use the Ubicloud runners which provide bigger disks. runners: ubicloud