diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 9c181f7..74123b5 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -6,3 +6,13 @@ steps: image: golang:1.25 commands: - make build + backend_options: + kubernetes: + serviceAccountName: default + resources: + requests: + memory: 512Mi + cpu: 1 + limits: + memory: 2Gi + cpu: 2 diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index bb94e07..8e81e45 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -6,8 +6,28 @@ steps: image: golang:1.25 commands: - make lint + backend_options: + kubernetes: + serviceAccountName: default + resources: + requests: + memory: 512Mi + cpu: 1 + limits: + memory: 2Gi + cpu: 2 - name: test image: golang:1.25 commands: - make test + backend_options: + kubernetes: + serviceAccountName: default + resources: + requests: + memory: 512Mi + cpu: 1 + limits: + memory: 2Gi + cpu: 2