From d6983eb55aafff121d44a623973a4d89e2ded8e1 Mon Sep 17 00:00:00 2001 From: Tejas Khanolkar Date: Tue, 29 Oct 2024 10:36:41 -0700 Subject: [PATCH] added yml file for canaries --- .codebuild/canary_workflow.yml | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .codebuild/canary_workflow.yml diff --git a/.codebuild/canary_workflow.yml b/.codebuild/canary_workflow.yml new file mode 100644 index 000000000..a3422c933 --- /dev/null +++ b/.codebuild/canary_workflow.yml @@ -0,0 +1,40 @@ +version: 0.2 +env: + shell: bash + compute-type: BUILD_GENERAL1_LARGE + +batch: + fast-fail: false + build-graph: + - identifier: build_linux + buildspec: .codebuild/build_linux.yml + env: + compute-type: BUILD_GENERAL1_LARGE + - identifier: publish_to_local_registry + buildspec: .codebuild/publish_to_local_registry.yml + env: + compute-type: BUILD_GENERAL1_MEDIUM + depend-on: + - build_linux + - identifier: build_app_swift + buildspec: .codebuild/run_ios_modelgen_e2e_test.yml + env: + compute-type: BUILD_GENERAL1_LARGE + variables: + TEST_SUITE: src/__tests__/build-app-swift.test.ts + CLI_REGION: us-east-2 + debug-session: true + depend-on: + - publish_to_local_registry + - identifier: build_app_android + buildspec: .codebuild/run_android_modelgen_e2e_test.yml + env: + compute-type: BUILD_GENERAL1_LARGE + variables: + TEST_SUITE: src/__tests__/build-app-android.test.ts + CLI_REGION: us-east-2 + debug-session: true + depend-on: + - publish_to_local_registry + + \ No newline at end of file