| steps: |
| - name: "connectedhomeip/chip-build-vscode:0.6.06" |
| env: |
| - PW_ENVIRONMENT_ROOT=/pwenv |
| args: |
| - "-c" |
| - source ./scripts/bootstrap.sh |
| id: Bootstrap |
| entrypoint: /usr/bin/bash |
| volumes: |
| - name: pwenv |
| path: /pwenv |
| timeout: 2700s |
| |
| - name: "connectedhomeip/chip-build-vscode:0.6.06" |
| env: |
| - PW_ENVIRONMENT_ROOT=/pwenv |
| args: |
| - ./examples/chef/chef.py --build_all --keep_going --build_exclude |
| noip |
| id: CompileAll |
| waitFor: |
| - Bootstrap |
| entrypoint: ./scripts/run_in_build_env.sh |
| volumes: |
| - name: pwenv |
| path: /pwenv |
| |
| - name: "connectedhomeip/chip-build-vscode:0.6.06" |
| env: |
| - PW_ENVIRONMENT_ROOT=/pwenv |
| args: |
| - ./examples/chef/chef.py --build_all --keep_going --build_include |
| linux_arm64_ipv6only.*noip |
| id: CompileNoip |
| waitFor: |
| - CompileAll |
| entrypoint: ./scripts/run_in_build_env.sh |
| volumes: |
| - name: pwenv |
| path: /pwenv |
| |
| - name: "gcr.io/cloud-builders/docker" |
| args: |
| ['/workspace/examples/chef/create_docker.py', '--commit_sha', '$COMMIT_SHA' ,'--short_sha', '$SHORT_SHA', |
| '--revision_id', '$REVISION_ID', '--build_id', '$BUILD_ID', '--image_name', '$_DOCKER_IMAGE_NAME', |
| '--tar_path', '/workspace/artifacts'] |
| id: DockerAll |
| entrypoint: python3 |
| waitFor: |
| - CompileNoip |
| |
| logsBucket: matter-build-automation-build-logs |
| |
| # Global timeout for all steps |
| timeout: 18000s |
| queueTtl: 21600s |
| |
| artifacts: |
| objects: |
| location: "gs://matter-build-automation-artifacts/$PROJECT_ID/$COMMIT_SHA/" |
| paths: ["/workspace/artifacts/*.tar.gz"] |
| # Using higher CPU machines generally speeds up builds, except bootstrap is always |
| # slow. |
| options: |
| machineType: "E2_HIGHCPU_32" |
| diskSizeGb: 500 |