Skip to content

Commit fb214cb

Browse files
committed
chore(satp-hermes): use default runners
Signed-off-by: Rafael Belchior <[email protected]>
1 parent e0bfbcf commit fb214cb

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/satp-hermes-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build-satp:
12-
runs-on: ubuntu-latest-16-cores
12+
runs-on: ubuntu-22.04
1313
continue-on-error: false
1414
outputs:
1515
build_success: ${{ steps.build.outputs.success }}

.github/workflows/satp-hermes-codegen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
codegen-satp:
12-
runs-on: ubuntu-latest-16-cores
12+
runs-on: ubuntu-22.04
1313
continue-on-error: false
1414
outputs:
1515
codegen_success: ${{ steps.codegen.outputs.success }}

.github/workflows/satp-hermes-docker.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
(github.event_name == 'pull_request' && (github.base_ref == 'main' || github.base_ref == 'satp-dev' || github.base_ref == 'satp-stg')) ||
5353
github.event_name == 'workflow_dispatch'
5454
)
55-
runs-on: ubuntu-latest-16-cores
55+
runs-on: ubuntu-22.04
5656
outputs:
5757
package_version: ${{ steps.set_tags.outputs.package_version }}
5858
tag_suffix: ${{ steps.set_tags.outputs.tag_suffix }}
@@ -122,7 +122,7 @@ jobs:
122122
# Build Docker images for pushes, PRs targeting the release branches, and manual workflow dispatch.
123123
# This job only builds, it does not push to registries.
124124
if: (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/satp-dev' || github.ref == 'refs/heads/satp-stg')) || (github.event_name == 'pull_request' && (github.base_ref == 'main' || github.base_ref == 'satp-dev' || github.base_ref == 'satp-stg')) || github.event_name == 'workflow_dispatch'
125-
runs-on: ubuntu-latest-16-cores
125+
runs-on: ubuntu-22.04
126126
steps:
127127
- uses: actions/[email protected]
128128

@@ -189,7 +189,7 @@ jobs:
189189
publish-satp-image-ghcr:
190190
needs: [build-satp-docker, set-docker-tags]
191191
if: (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/satp-dev' || github.ref == 'refs/heads/satp-stg')) || github.event_name == 'workflow_dispatch'
192-
runs-on: ubuntu-latest-16-cores
192+
runs-on: ubuntu-22.04
193193
steps:
194194
- uses: actions/[email protected]
195195

@@ -251,7 +251,7 @@ jobs:
251251
publish-satp-image-dockerhub:
252252
needs: [build-satp-docker, set-docker-tags]
253253
if: (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/satp-dev' || github.ref == 'refs/heads/satp-stg')) || github.event_name == 'workflow_dispatch'
254-
runs-on: ubuntu-latest-16-cores
254+
runs-on: ubuntu-22.04
255255
continue-on-error: true # Don't fail the workflow if Docker Hub push fails
256256
steps:
257257
- uses: actions/[email protected]

.github/workflows/satp-hermes-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
lint-satp:
12-
runs-on: ubuntu-latest-16-cores
12+
runs-on: ubuntu-22.04
1313
continue-on-error: false
1414
outputs:
1515
lint_success: ${{ steps.lint.outputs.success }}

.github/workflows/satp-hermes-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
create-github-release:
5858
if: inputs.is_release == 'true'
59-
runs-on: ubuntu-latest-16-cores
59+
runs-on: ubuntu-22.04
6060
steps:
6161
- uses: actions/[email protected]
6262
with:

.github/workflows/satp-hermes-test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Test execution jobs: run unit and integration tests in parallel
1818
run-satp-tests-unit:
1919
if: inputs.skip_tests != true
20-
runs-on: ubuntu-latest-16-cores
20+
runs-on: ubuntu-22.04
2121
continue-on-error: true
2222
env:
2323
FULL_BUILD_DISABLED: true
@@ -107,7 +107,7 @@ jobs:
107107
108108
run-satp-tests-integration-bridge:
109109
if: inputs.skip_tests != true
110-
runs-on: ubuntu-latest-16-cores
110+
runs-on: ubuntu-22.04
111111
continue-on-error: true
112112
env:
113113
FULL_BUILD_DISABLED: true
@@ -198,7 +198,7 @@ jobs:
198198

199199
run-satp-tests-integration-oracle:
200200
if: inputs.skip_tests != true
201-
runs-on: ubuntu-latest-16-cores
201+
runs-on: ubuntu-22.04
202202
continue-on-error: true
203203
env:
204204
FULL_BUILD_DISABLED: true
@@ -292,7 +292,7 @@ jobs:
292292
293293
run-satp-tests-integration-gateway:
294294
if: inputs.skip_tests != true
295-
runs-on: ubuntu-latest-16-cores
295+
runs-on: ubuntu-22.04
296296
continue-on-error: true
297297
env:
298298
FULL_BUILD_DISABLED: true
@@ -385,7 +385,7 @@ jobs:
385385
386386
run-satp-tests-integration-docker:
387387
if: inputs.skip_tests != true
388-
runs-on: ubuntu-latest-16-cores
388+
runs-on: ubuntu-22.04
389389
continue-on-error: true
390390
env:
391391
FULL_BUILD_DISABLED: true
@@ -490,7 +490,7 @@ jobs:
490490

491491
run-satp-tests-integration-cbdc:
492492
if: inputs.skip_tests != true
493-
runs-on: ubuntu-latest-16-cores
493+
runs-on: ubuntu-22.04
494494
continue-on-error: true
495495
env:
496496
FULL_BUILD_DISABLED: true
@@ -583,7 +583,7 @@ jobs:
583583
584584
run-satp-tests-on-chain:
585585
if: inputs.skip_tests != true
586-
runs-on: ubuntu-latest-16-cores
586+
runs-on: ubuntu-22.04
587587
continue-on-error: true
588588
env:
589589
FULL_BUILD_DISABLED: true
@@ -649,7 +649,7 @@ jobs:
649649
650650
run-satp-tests-recovery:
651651
if: inputs.skip_tests != true
652-
runs-on: ubuntu-latest-16-cores
652+
runs-on: ubuntu-22.04
653653
continue-on-error: true
654654
env:
655655
FULL_BUILD_DISABLED: true
@@ -743,7 +743,7 @@ jobs:
743743
744744
run-satp-tests-rollback:
745745
if: inputs.skip_tests != true
746-
runs-on: ubuntu-latest-16-cores
746+
runs-on: ubuntu-22.04
747747
continue-on-error: true
748748
env:
749749
FULL_BUILD_DISABLED: true

0 commit comments

Comments
 (0)