Skip to content

Commit ad2fa92

Browse files
authored
change self hosted runners to runs-on (#222)
1 parent b4afadd commit ad2fa92

4 files changed

Lines changed: 22 additions & 13 deletions

File tree

.github/workflows/build-ollama-serve.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@ jobs:
2929
build_and_push:
3030
name: Build and push images
3131
runs-on:
32-
- self-hosted
33-
- dind
34-
- large-8x8
32+
- "runs-on=${{ github.run_id }}-build-push"
33+
- "runner=large-amd64"
34+
- "cpu=8"
35+
- "ram=16"
3536
outputs:
3637
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
3738
steps:
3839
- name: Check out the repo
39-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4041
- name: Set version strings
4142
id: versions
4243
run: |

.github/workflows/build-vector-serve.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ jobs:
4848
build_and_push_amd64:
4949
name: Build and push AMD64 images
5050
runs-on:
51-
- self-hosted
52-
- dind
53-
- large-8x8
51+
- "runs-on=${{ github.run_id }}-build-push-amd64"
52+
- "runner=large-amd64"
53+
- "cpu=8"
54+
- "ram=16"
5455
outputs:
5556
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
5657
steps:
@@ -112,7 +113,10 @@ jobs:
112113
build_and_push_arm64:
113114
name: Build and push ARM64 images
114115
runs-on:
115-
- arm64-4x16
116+
- "runs-on=${{ github.run_id }}-build-push-arm64"
117+
- "runner=large-arm64"
118+
- "cpu=8"
119+
- "ram=16"
116120
outputs:
117121
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
118122
steps:

.github/workflows/extension_upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- 3000:3000
2525
steps:
2626
- name: Checkout repository content
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: Install Rust stable toolchain
3030
uses: actions-rs/toolchain@v1

.github/workflows/pg-image-build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
name: Build and push AMD64 images
2828
if: github.repository_owner == 'tembo-io'
2929
runs-on:
30-
- self-hosted
31-
- dind
32-
- large-8x8
30+
- "runs-on=${{ github.run_id }}-build-push-amd64"
31+
- "runner=large-amd64"
32+
- "cpu=8"
33+
- "ram=16"
3334
outputs:
3435
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
3536
steps:
@@ -87,7 +88,10 @@ jobs:
8788
name: Build and push ARM64 images
8889
if: github.repository_owner == 'tembo-io'
8990
runs-on:
90-
- arm64-4x16
91+
- "runs-on=${{ github.run_id }}-build-push-arm64"
92+
- "runner=large-arm64"
93+
- "cpu=8"
94+
- "ram=16"
9195
outputs:
9296
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
9397
steps:

0 commit comments

Comments
 (0)