Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ To run ruff on you branch:

List all the type of test suites included and provide instructions how to execute them

- Unit
- Unit Testing
- Integration
- Performance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ batch:
- identifier: deploy
env:
compute-type: BUILD_GENERAL1_SMALL
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand All @@ -128,8 +128,8 @@ batch:
- identifier: integration_test
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand All @@ -142,8 +142,8 @@ batch:
- identifier: undeploy
env:
compute-type: BUILD_GENERAL1_SMALL
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ batch:
- identifier: integration_test_reporting
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand All @@ -153,8 +153,8 @@ batch:
- identifier: integration_test_validation
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand All @@ -167,8 +167,8 @@ batch:
- identifier: integration_test_opening_times
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand All @@ -181,8 +181,8 @@ batch:
- identifier: integration_test_general
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/amazonlinux2-x86_64-standard:5.0
type: LINUX_CONTAINER
image: aws/codebuild/amazonlinux2-aarch64-standard:3.0
type: ARM_CONTAINER
privileged-mode: true
variables:
PROFILE: dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ resource "aws_codebuild_project" "build_cicd_blue_green_artefact" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ resource "aws_codebuild_project" "build_cicd_shared_resources_artefact" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ resource "aws_codebuild_project" "build_deploy_test_release" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ resource "aws_codebuild_project" "build_image" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ resource "aws_codebuild_project" "blue_green_rollback_stage" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ resource "aws_codebuild_project" "delete_blue_green_environment" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ resource "aws_codebuild_project" "destroy_environment_from_tag" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ resource "aws_codebuild_project" "destroy_nonprod_environment_on_pr_merged" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ resource "aws_codebuild_project" "unit_tests_stage" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -105,8 +105,8 @@ resource "aws_codebuild_project" "full_deploy_stage" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -145,8 +145,8 @@ resource "aws_codebuild_project" "deploy_blue_green_environment_stage" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -203,8 +203,8 @@ resource "aws_codebuild_project" "deploy_shared_resources_environment_stage" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -249,8 +249,8 @@ resource "aws_codebuild_project" "integration_tests" {

environment {
compute_type = "BUILD_GENERAL1_LARGE"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -293,8 +293,8 @@ resource "aws_codebuild_project" "trigger_rollback" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down Expand Up @@ -350,8 +350,8 @@ resource "aws_codebuild_project" "production_smoke_test" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ resource "aws_codebuild_project" "setup_dos_environment" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ resource "aws_codebuild_project" "task_env_deploy_and_test" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Loading