Skip to content

Commit

Permalink
fix(ci): use new gitlab runner
Browse files Browse the repository at this point in the history
  • Loading branch information
clamoriniere committed Jun 18, 2024
1 parent 1e19a09 commit ad95f7d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,27 @@ before_script:

build:
stage: build
tags: [ "runner:main", "size:large" ]
tags: ["runner:main", "size:large"]
script:
- make build

tests:
stage: test
tags: [ "runner:main", "size:large" ]
tags: ["runner:main", "size:large"]
script:
- make test

generate_code:
stage: test
tags: [ "runner:main", "size:large" ]
tags: ["runner:main", "size:large"]
script:
- make generate
- git diff --exit-code

build_image_amd64:
stage: image
tags: ["runner:docker", "size:large"]
tags:
- "arch:amd64"
image: $JOB_DOCKER_IMAGE
variables:
GOARCH: amd64
Expand All @@ -62,7 +63,8 @@ build_image_amd64:

build_image_arm64:
stage: image
tags: ["runner:docker-arm", "platform:arm64"]
tags:
- "arch:arm64"
image: $JOB_DOCKER_IMAGE
variables:
GOARCH: arm64
Expand Down

0 comments on commit ad95f7d

Please sign in to comment.