Skip to content

Commit e389c35

Browse files
authored
chore: Switch test workflows to ubicloud runners (#2078)
#### Summary Uses ubicloud runners which are 10x cheaper for testing workflows. Publishing related workflows will still use GitHub runners for security reasons ---
1 parent dbdae2f commit e389c35

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/lint_golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
golangci:
1212
name: Lint with GolangCI
13-
runs-on: large-ubuntu-plugin-sdk
13+
runs-on: ubicloud-standard-8
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/unittest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
unitests:
1212
strategy:
1313
matrix:
14-
os: [large-ubuntu-plugin-sdk, large-windows-plugin-sdk, macos-latest]
14+
os: [ubicloud-standard-8, large-windows-plugin-sdk, macos-latest]
1515
runs-on: ${{ matrix.os }}
1616
timeout-minutes: 15
1717
steps:
@@ -26,13 +26,13 @@ jobs:
2626
- name: Run tests
2727
run: make test
2828
- name: Run benchmark
29-
if: matrix.os == 'large-ubuntu-plugin-sdk'
29+
if: matrix.os == 'ubicloud-standard-8'
3030
run: make benchmark-ci
3131
- name: Save PR number
32-
if: matrix.os == 'large-ubuntu-plugin-sdk' && github.event_name == 'pull_request'
32+
if: matrix.os == 'ubicloud-standard-8' && github.event_name == 'pull_request'
3333
run: echo ${{ github.event.number }} > ./pr_number
3434
- name: Upload deltas
35-
if: matrix.os == 'large-ubuntu-plugin-sdk'
35+
if: matrix.os == 'ubicloud-standard-8'
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: delta-action-benchmarks

0 commit comments

Comments
 (0)