Skip to content

Commit 92f8c02

Browse files
committed
Use new ami with 100 gb for action runner
1 parent c904b44 commit 92f8c02

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.github/actions/start-aws-runner/action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ inputs:
88
github-token:
99
required: true
1010
ec2-image-id:
11-
default: "ami-04bd6e81239f4f3fb"
11+
# github-self-hosted-runner-ubuntu-20-100g-disk
12+
default: "ami-0ccd67e0abd945eec"
1213
required: true
1314
ec2-instance-type:
1415
default: "c5.2xlarge"

.github/workflows/gradle.yml

+1
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ jobs:
482482
id: start-ec2-runner
483483
uses: ./.github/actions/start-aws-runner
484484
with:
485+
# github-self-hosted-runner-ubuntu-20-with-120gdisk-docker-20.10.7
485486
ec2-image-id: ami-0d4083c04fde515c4
486487
aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
487488
aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}

.github/workflows/publish-command.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
3535
aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
3636
github-token: ${{ secrets.SELF_RUNNER_GITHUB_ACCESS_TOKEN }}
37-
ec2-image-id: ami-0d648081937c75a73
37+
# github-self-hosted-runner-ubuntu-20-100g-disk
38+
ec2-image-id: ami-0ccd67e0abd945eec
3839
publish-image:
3940
needs: start-publish-image-runner
4041
runs-on: ${{ needs.start-publish-image-runner.outputs.label }}

.github/workflows/test-command.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
3434
aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
3535
github-token: ${{ secrets.SELF_RUNNER_GITHUB_ACCESS_TOKEN }}
36-
ec2-image-id: ami-0d648081937c75a73
36+
# github-self-hosted-runner-ubuntu-20-100g-disk
37+
ec2-image-id: ami-0ccd67e0abd945eec
3738
integration-test:
3839
timeout-minutes: 240
3940
needs: start-test-runner

.github/workflows/test-performance-command.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
4040
aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
4141
github-token: ${{ secrets.SELF_RUNNER_GITHUB_ACCESS_TOKEN }}
42-
ec2-image-id: ami-0d648081937c75a73
42+
# github-self-hosted-runner-ubuntu-20-100g-disk
43+
ec2-image-id: ami-0ccd67e0abd945eec
4344
performance-test:
4445
timeout-minutes: 240
4546
needs: start-test-runner

0 commit comments

Comments
 (0)