Skip to content

Commit

Permalink
SONAR-21409 Fix flakiness by using public runners
Browse files Browse the repository at this point in the history
  • Loading branch information
carminevassallo committed Jan 24, 2024
1 parent 8aa0207 commit c3e64df
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .cirrus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ only_on_non_release_draft_template: &ONLY_ON_NON_RELEASE_DRAFT_TEMPLATE
only_if: $CIRRUS_PRERELEASE != "true"

docker_build_container_template: &CONTAINER_TEMPLATE
container:
dockerfile: .cirrus/Dockerfile
docker_arguments:
CIRRUS_AWS_ACCOUNT: ${CIRRUS_AWS_ACCOUNT}


docker_build_container_template: &PRIVATE_CONTAINER_TEMPLATE
dockerfile: .cirrus/Dockerfile
docker_arguments:
CIRRUS_AWS_ACCOUNT: ${CIRRUS_AWS_ACCOUNT}
Expand Down Expand Up @@ -47,7 +54,7 @@ clone_script_template: &CLONE_SCRIPT_TEMPLATE
chart_static_compatibility_test_task:
<<: *ONLY_ON_NON_RELEASE_DRAFT_TEMPLATE
timeout_in: 30m
eks_container:
container:
<<: *CONTAINER_TEMPLATE
cpu: 1
memory: 1Gb
Expand All @@ -66,7 +73,7 @@ chart_static_compatibility_test_task:
chart_testing_task:
<<: *ONLY_ON_NON_RELEASE_DRAFT_TEMPLATE
timeout_in: 30m
eks_container:
container:
<<: *CONTAINER_TEMPLATE
cpu: 2
memory: 4Gb
Expand Down Expand Up @@ -97,7 +104,7 @@ chart_testing_task:
chart_packaging_task:
<<: *ONLY_ON_NON_RELEASE_DRAFT_TEMPLATE
timeout_in: 15m
eks_container:
container:
<<: *CONTAINER_TEMPLATE
cpu: 2
memory: 1Gb
Expand Down

0 comments on commit c3e64df

Please sign in to comment.