Skip to content

Commit a7fca91

Browse files
chore: increase resources of CI runner (#293)
## Description - Increase resources of CI runner <!-- greptile_comment --> ## Greptile Summary Modified CI workflows to use 'extra-large' runners instead of 'ubuntu-latest-m' for both integration and unit tests, enhancing computational resources for test execution. - Changed runner type in `.github/workflows/ci-test-integration.yml` from 'ubuntu-latest-m' to 'extra-large' - Changed runner type in `.github/workflows/ci-test-unit.yml` from 'ubuntu-latest-m' to 'extra-large' - Note: Change will increase GitHub Actions minutes consumption due to higher resource allocation <!-- /greptile_comment -->
1 parent 76dda54 commit a7fca91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Run CI - Integration Tests
1010
jobs:
1111
run_make_ci_test:
1212
if: github.event.pull_request.draft == false
13-
runs-on: ubuntu-latest-m
13+
runs-on: extra-large
1414
steps:
1515
- name: Checkout this magicblock-validator
1616
uses: actions/checkout@v2

.github/workflows/ci-test-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Run CI - Unit Tests
1010
jobs:
1111
run_make_ci_test:
1212
if: github.event.pull_request.draft == false
13-
runs-on: ubuntu-latest-m
13+
runs-on: extra-large
1414
steps:
1515
- name: Checkout this magicblock-validator
1616
uses: actions/checkout@v2

0 commit comments

Comments
 (0)