diff options
author | 2023-11-16 13:54:32 +0000 | |
---|---|---|
committer | 2023-11-16 14:02:32 +0000 | |
commit | 019f8545e3db82cd30011cb50bab8f24966adceb (patch) | |
tree | a9398be8b50753611858cb6f75888eb93424ca64 | |
parent | fe307811eea419ac99148a824b7e02db378625a3 (diff) |
Update lunch commands to include trunk_staging
Lunch commands have to be
'lunch <target>-<release>-<build_type>', where
release is one of: next staging trunk trunk_food
trunk_staging. The one we are using locally and
in our test suites is `trunk_staging`.
Test: tested lunch commands locally
Change-Id: I96e201f119e4c9b827fed0773b1ac5c1a00087f8
-rw-r--r-- | test/README.chroot.md | 20 | ||||
-rw-r--r-- | test/README.chroot_vm.md | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/test/README.chroot.md b/test/README.chroot.md index b332df9cd9..51773424ed 100644 --- a/test/README.chroot.md +++ b/test/README.chroot.md @@ -60,23 +60,23 @@ Note that using this chroot-based approach requires root access to the device build and test: * For (32-bit) Arm: ```bash - lunch arm_krait-eng + lunch arm_krait-trunk_staging-eng ``` * For (64-bit only) Arm64: ```bash - lunch armv8-eng + lunch armv8-trunk_staging-eng ``` * For (32- and 64-bit) Arm64: ```bash - lunch arm_v7_v8-eng + lunch arm_v7_v8-trunk_staging-eng ``` * For (32-bit) Intel x86: ```bash - lunch silvermont-eng + lunch silvermont-trunk_staging-eng ``` * For (64-bit) RISC-V: ```bash - lunch aosp_riscv64-eng + lunch aosp_riscv64-trunk_staging-eng ``` 3. Set up the environment to use a pre-built ADB: ```bash @@ -92,23 +92,23 @@ Note that using this chroot-based approach requires root access to the device build and test: * For (32-bit) Arm: ```bash - lunch aosp_arm-eng + lunch aosp_arm-trunk_staging-eng ``` * For (32- and 64-bit) Arm64: ```bash - lunch aosp_arm64-eng + lunch aosp_arm64-trunk_staging-eng ``` * For (32-bit) Intel x86: ```bash - lunch aosp_x86-eng + lunch aosp_x86-trunk_staging-eng ``` * For (32- and 64-bit) Intel x86-64: ```bash - lunch aosp_x86_64-eng + lunch aosp_x86_64-trunk_staging-eng ``` * For (64-bit) RISC-V: ```bash - lunch aosp_riscv64-eng + lunch aosp_riscv64-trunk_staging-eng ``` 3. Build ADB: ```bash diff --git a/test/README.chroot_vm.md b/test/README.chroot_vm.md index 2f163deaf5..ed80ec0841 100644 --- a/test/README.chroot_vm.md +++ b/test/README.chroot_vm.md @@ -47,7 +47,7 @@ export ART_TEST_SSH_PORT=10001 export ART_TEST_ON_VM=true . ./build/envsetup.sh -lunch armv8-eng # or aosp_riscv64-userdebug, etc. +lunch armv8-trunk_staging-eng # or aosp_riscv64-trunk_staging-userdebug, etc. art/tools/buildbot-build.sh --target # --installclean art/tools/buildbot-cleanup-device.sh |