Skip to content

Commit 435fe7b

Browse files
committed
change
1 parent ae9194b commit 435fe7b

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/workflows/build-backend.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ jobs:
1010
name: Build
1111
runs-on: ${{ format('arm64-fargate-{0}{1}{2}', github.run_id, github.run_number, github.run_attempt) }}
1212
steps:
13-
- uses: actions/checkout@v4
14-
with:
15-
ref: ${{ github.ref }}
16-
fetch-depth: 0
1713
- name: Configure AWS credentials
1814
uses: aws-actions/configure-aws-credentials@v4
1915
with:
@@ -22,10 +18,6 @@ jobs:
2218
aws-region: eu-central-1
2319
- name: Login to Amazon ECR
2420
uses: aws-actions/amazon-ecr-login@v2
25-
- name: Test
26-
if: always()
27-
run: |
28-
tail -f /dev/null
2921
- name: Run kaniko
3022
working-directory: ./backend
3123
run: |

infrastructure/tools/github_runner_task.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ resource "aws_ecs_task_definition" "github_runner" {
9696
family = "github-runner"
9797
requires_compatibilities = ["FARGATE"]
9898
network_mode = "awsvpc"
99-
cpu = 1024
100-
memory = 2048
99+
cpu = 8192
100+
memory = 16384
101101
execution_role_arn = aws_iam_role.github_runner_execution_role.arn
102102
task_role_arn = aws_iam_role.github_runner_task_role.arn
103103

0 commit comments

Comments
 (0)