Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,18 @@ executors:
docker:
- image: alpine:3.23
resource_class: xlarge
alpine-large:
docker:
- image: alpine:3.23
resource_class: large
alpine-arm64:

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we also change alpine-arm64 to be alpine-arm64-xlarge to make it more clear on the size?

docker:
- image: alpine:3.23
resource_class: arm.xlarge
alpine-arm64-large:
docker:
- image: alpine:3.23
resource_class: arm.large
generic-ubuntu:
docker:
- image: ubuntu:latest
Expand Down Expand Up @@ -923,7 +931,7 @@ workflows:
pre_test_cmds: export BROWSER="curl -L"
requires:
- build linux static arm64
executor: docker-arm64-xl
executor: docker-arm64
test_snyk_command: ./binary-releases/experimental/snyk-linux-arm64

- acceptance-tests:
Expand All @@ -946,7 +954,7 @@ workflows:
pre_test_cmds: export BROWSER="curl -L"
requires:
- build linux amd64
executor: docker-amd64-xl
executor: docker-amd64
test_snyk_command: ./binary-releases/snyk-linux

- acceptance-tests:
Expand Down Expand Up @@ -1015,7 +1023,7 @@ workflows:
- '/release.*/'
requires:
- build alpine amd64
executor: alpine
executor: alpine-large
test_snyk_command: ./binary-releases/snyk-alpine
install_deps_extension: alpine-full
dont_skip_tests: 0
Expand All @@ -1039,7 +1047,7 @@ workflows:
- '/release.*/'
requires:
- build alpine arm64
executor: alpine-arm64
executor: alpine-arm64-large
test_snyk_command: ./binary-releases/snyk-alpine-arm64
install_deps_extension: alpine-full
dont_skip_tests: 0
Expand Down
Loading