Skip to content

Commit

Permalink
ci: use newer linux images (#1659)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 authored Mar 4, 2024
1 parent 958399c commit 22c3695
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,15 +462,12 @@ jobs:
ssh ec2-user@controller.<< parameters.ssh-host >> "docker pull public.ecr.aws/shuttle-dev/deployer:$TAG"
build-binaries-linux:
machine:
image: << parameters.image >>
image: default
resource_class: << parameters.resource_class >>
parameters:
target:
description: "Linux target to build for"
type: string
image:
description: "Machine image to use"
type: string
resource_class:
description: "The resource type to use for the machine"
type: string
Expand Down Expand Up @@ -558,7 +555,7 @@ jobs:
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete -draft ${TAG} ./artifacts/
linux-qa:
machine:
image: ubuntu-2004:current
image: default
resource_class: medium
steps:
- checkout
Expand Down Expand Up @@ -838,23 +835,20 @@ workflows:
jobs:
- build-binaries-linux:
name: build-binaries-x86_64-gnu
image: ubuntu-2204:2022.04.1
target: x86_64-unknown-linux-gnu
resource_class: xlarge
filters:
branches:
only: production
- build-binaries-linux:
name: build-binaries-x86_64-musl
image: ubuntu-2204:2022.04.1
target: x86_64-unknown-linux-musl
resource_class: xlarge
filters:
branches:
only: production
- build-binaries-linux:
name: build-binaries-aarch64
image: ubuntu-2004:202101-01
target: aarch64-unknown-linux-musl
resource_class: arm.xlarge
filters:
Expand Down

0 comments on commit 22c3695

Please sign in to comment.