Skip to content

Commit

Permalink
added yml file for canaries
Browse files Browse the repository at this point in the history
  • Loading branch information
tejas2008 committed Oct 29, 2024
1 parent 2d29c88 commit d6983eb
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .codebuild/canary_workflow.yml
Original file line number Diff line number Diff line change
@@ -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


0 comments on commit d6983eb

Please sign in to comment.