Skip to content

Commit

Permalink
added canary yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
tejas2008 committed Oct 31, 2024
1 parent 2d29c88 commit 28dcf7d
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .codebuild/canary_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
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: test
buildspec: .codebuild/test.yml
env:
compute-type: BUILD_GENERAL1_LARGE
depend-on:
- build_linux
- 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_us_east_1
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-1
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
- identifier: build_app_ts
buildspec: .codebuild/run_e2e_tests.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
TEST_SUITE: src/__tests__/build-app-ts.test.ts
CLI_REGION: ap-southeast-1
debug-session: true
depend-on:
- publish_to_local_registry
- identifier: cleanup_e2e_resources
buildspec: .codebuild/cleanup_e2e_resources.yml
env:
compute-type: BUILD_GENERAL1_MEDIUM
depend-on:
- publish_to_local_registry

0 comments on commit 28dcf7d

Please sign in to comment.