ตั้งแต่วันที่ 27 มีนาคม 2025 เป็นต้นไป เราขอแนะนำให้ใช้ android-latest-release
แทน aosp-main
เพื่อสร้างและมีส่วนร่วมใน AOSP โปรดดูข้อมูลเพิ่มเติมที่หัวข้อการเปลี่ยนแปลงใน AOSP
สร้างผู้ให้บริการใน Tradefed
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ผู้ให้บริการบิลด์ใน TF จะแสดงด้วย IBuildProvider
interface
การติดตั้งใช้งานอินเทอร์เฟซใดก็ได้ในการกําหนดค่าการทดสอบ การออกแบบที่ยืดหยุ่นนี้ช่วยให้โต้ตอบกับระบบประเภทใดก็ได้
ผู้ให้บริการบิลด์จะสร้าง build
info ที่ป้อนข้อมูลทรัพยากรทั้งหมดที่จําเป็นสําหรับการตั้งค่าและการทดสอบ
ผู้ให้บริการบิลด์ในพื้นที่
เมื่อเรียกใช้ในพื้นที่ คุณจะกำหนดค่าได้หลายวิธีดังนี้
- ค้นหาและใช้รูปภาพอุปกรณ์ที่สร้างขึ้นในพื้นที่ ดังนี้
LocalDeviceBuildProvider
ซึ่งโดยปกติจะใช้เพื่อแฟลชอิมเมจ Android ที่สร้างขึ้นในพื้นที่ก่อนที่จะทำการทดสอบ
- ค้นหาและใช้เฟรมทดสอบที่สร้างขึ้นในพื้นที่ โดยทำดังนี้
BootstrapBuildProvider
ซึ่งโดยทั่วไปจะใช้เพื่อทำการทดสอบกับอุปกรณ์ที่แฟลชแล้วและพร้อมใช้งาน นี่คือผู้ให้บริการที่ Atest ใช้ระหว่างการทดสอบในเครื่อง
การกำหนดค่า
ใช้แท็กออบเจ็กต์ build_provider
เช่น
<build_provider class="com.android.tradefed.build.BootstrapBuildProvider" />
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-27 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-27 UTC"],[],[],null,["# Build providers in Tradefed\n\nBuild providers in TF are represented by the [`IBuildProvider`\ninterface](https://android.googlesource.com/platform/tools/tradefederation/+/refs/heads/android16-release/src/com/android/tradefed/build/IBuildProvider.java).\n\nAny implementation of the interface can be used in a test configuration. This\nflexible design allows interacting with any type of system.\n\nA build provider creates [build\ninfo](/docs/core/tests/tradefed/architecture/build-provider/build-info)\npopulated with all the resources needed by the setup and tests.\n\nLocal build providers\n---------------------\n\nWhen running locally, several possible configurations exist:\n\n- Find and use a locally built device image: [`LocalDeviceBuildProvider`](https://android.googlesource.com/platform/tools/tradefederation/+/refs/heads/android16-release/src/com/android/tradefed/build/LocalDeviceBuildProvider.java). This is typically used to flash a locally built Android image before running its tests.\n- Find and use locally built test cases: [`BootstrapBuildProvider`](https://android.googlesource.com/platform/tools/tradefederation/+/refs/heads/android16-release/src/com/android/tradefed/build/BootstrapBuildProvider.java). This is typically used to run tests against an already flashed and ready device. This is the provider used by [Atest](/docs/core/tests/development/atest) during local testing.\n\nConfiguration\n-------------\n\nUse the object tag `build_provider`. For example: \n\n \u003cbuild_provider class=\"com.android.tradefed.build.BootstrapBuildProvider\" /\u003e"]]