-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate out cloudbuild 'all' vs smoke test (smaller build subset). (#…
…10719) * Separatte out cloudbuild 'all' vs smoke test (smaller build subset). This allows cloudbuild to selectively 'build evetyhing' vs a smaller subset. Smaller subset (smoke test) allows for: - less chances for failed builds due to new platforms being added - faster builds because not taking into account as many platform and build variations (like ipv6 or rpc) Build all is still available for scheduled builds * Restyle fixes * Add ids to each step - the ids are shown in the UI and useful * Use more CPU for build-all as we already reach the 2 hour time limit
- Loading branch information
Showing
2 changed files
with
135 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
steps: | ||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- "-c" | ||
- source ./scripts/bootstrap.sh | ||
id: Bootstrap | ||
entrypoint: /usr/bin/bash | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
timeout: 900s | ||
|
||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
id: ESP32 | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- >- | ||
./scripts/build/build_examples.py --enable-flashbundle | ||
--target-glob '*-m5stack-*' build --create-archives | ||
/workspace/artifacts/ | ||
waitFor: | ||
- Bootstrap | ||
entrypoint: ./scripts/run_in_build_env.sh | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
|
||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
id: NRFConnect | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- >- | ||
./scripts/build/build_examples.py --enable-flashbundle | ||
--target-glob '*-nrf52840-{lock,light}' build --create-archives | ||
/workspace/artifacts/ | ||
waitFor: | ||
- Bootstrap | ||
entrypoint: ./scripts/run_in_build_env.sh | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
|
||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
id: EFR32 | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- >- | ||
./scripts/build/build_examples.py --enable-flashbundle | ||
--target-glob '*-brd4161a-{lock,light}' build --create-archives | ||
/workspace/artifacts/ | ||
waitFor: | ||
- Bootstrap | ||
entrypoint: ./scripts/run_in_build_env.sh | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
|
||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
id: Linux | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- >- | ||
./scripts/build/build_examples.py --enable-flashbundle | ||
--target-glob 'linux-*' build --create-archives | ||
/workspace/artifacts/ | ||
waitFor: | ||
- Bootstrap | ||
entrypoint: ./scripts/run_in_build_env.sh | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
|
||
- name: "connectedhomeip/chip-build-vscode:0.5.18" | ||
env: | ||
- PW_ENVIRONMENT_ROOT=/pwenv | ||
args: | ||
- >- | ||
./scripts/build/build_examples.py --enable-flashbundle | ||
--target-glob 'android-{arm64,x64}-chip-tool' build | ||
--create-archives /workspace/artifacts/ | ||
waitFor: | ||
- Bootstrap | ||
entrypoint: ./scripts/run_in_build_env.sh | ||
volumes: | ||
- name: pwenv | ||
path: /pwenv | ||
|
||
logsBucket: matter-build-automation-build-logs | ||
|
||
# Global timeout for all steps | ||
timeout: 7200s | ||
|
||
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 by > 4x (faster as we spend more time | ||
# building instead of docker download/checkout/bootstrap) | ||
options: | ||
machineType: "E2_HIGHCPU_8" |