หน้านี้มีรายละเอียดเกี่ยวกับเนื้อหาของคอนเทนเนอร์ Bazel รวมถึงวิธีการสร้าง โปรเจ็กต์ abseil-cpp โดยใช้ Bazel ภายในคอนเทนเนอร์ Bazel และวิธีสร้างโปรเจ็กต์นี้โดยตรง จากเครื่องโฮสต์โดยใช้คอนเทนเนอร์ Bazel ที่มีการต่อเชื่อมไดเรกทอรี
สร้างโปรเจ็กต์ Abseil จากเครื่องโฮสต์ที่มีการต่อเชื่อมไดเรกทอรี
วิธีการในส่วนนี้ช่วยให้คุณสร้างโดยใช้คอนเทนเนอร์ Bazel กับแหล่งที่มาที่ตรวจสอบในสภาพแวดล้อมของโฮสต์ คอนเทนเนอร์เริ่มทำงานแล้ว สำหรับแต่ละคำสั่งบิลด์ที่ดำเนินการ ผลลัพธ์ของบิลด์จะแคชไว้ในโฮสต์ เพื่อนำไปใช้ซ้ำได้ในบิลด์ต่างๆ
โคลนโปรเจ็กต์ไปยังไดเรกทอรีในเครื่องโฮสต์
git clone --depth 1 --branch 20220623.1 https://github.com/abseil/abseil-cpp.git /src/workspace
สร้างโฟลเดอร์ที่จะมีผลลัพธ์ที่แคชไว้เพื่อแชร์ระหว่างบิลด์ต่างๆ
mkdir -p /tmp/build_output/
ใช้คอนเทนเนอร์ Bazel เพื่อสร้างโปรเจ็กต์และสร้างบิลด์ เอาต์พุตที่ใช้ได้ในโฟลเดอร์เอาต์พุตในเครื่องโฮสต์
docker run \
-e USER="$(id -u)" \
-u="$(id -u)" \
-v /src/workspace:/src/workspace \
-v /tmp/build_output:/tmp/build_output \
-w /src/workspace \
gcr.io/bazel-public/bazel:latest \
--output_user_root=/tmp/build_output \
build //absl/...
สร้างโปรเจ็กต์ที่มีเจลล้างทำความสะอาดโดยเพิ่มบิลด์ --config=asan|tsan|msan
ตั้งค่าสถานะเพื่อเลือก AddressSanitizer (asan), ThreadSanitizer (tsan) หรือ
MemorySanitizer (msan) ตามความเหมาะสม
docker run \
-e USER="$(id -u)" \
-u="$(id -u)" \
-v /src/workspace:/src/workspace \
-v /tmp/build_output:/tmp/build_output \
-w /src/workspace \
gcr.io/bazel-public/bazel:latest \
--output_user_root=/tmp/build_output \
build --config={asan | tsan | msan} -- //absl/... -//absl/types:variant_test
สร้างโปรเจ็กต์ Abseil จากภายในคอนเทนเนอร์
วิธีการในส่วนนี้ช่วยให้คุณสร้างโดยใช้คอนเทนเนอร์ Bazel กับแหล่งที่มาภายในคอนเทนเนอร์ เริ่มต้นใช้งานคอนเทนเนอร์ที่จุดเริ่มต้น ของเวิร์กโฟลว์การพัฒนาและทำการเปลี่ยนแปลงในช่วงเวลาที่แย่ภายใน คอนเทนเนอร์ ผลลัพธ์ของบิลด์จะได้รับการแคชไว้
เริ่ม Shell ในคอนเทนเนอร์ Bazel
docker run --interactive --entrypoint=/bin/bash gcr.io/bazel-public/bazel:latest
รหัสคอนเทนเนอร์แต่ละรายการไม่ซ้ำกัน ในวิธีการด้านล่าง คอนเทนเนอร์คือ 5a99103747c6
โคลนโปรเจ็กต์
ubuntu@5a99103747c6:~$ git clone --depth 1 --branch 20220623.1 https://github.com/abseil/abseil-cpp.git && cd abseil-cpp/
สร้างบิลด์ปกติ
ubuntu@5a99103747c6:~/abseil-cpp$ bazel build //absl/...
สร้างโปรเจ็กต์ที่มีเจลล้างทำความสะอาดโดยเพิ่ม --config=asan|tsan|msan
สร้าง Flag เพื่อเลือก AddressSanitizer (asan), ThreadSanitizer (tsan) หรือ
MemorySanitizer (msan) ตามความเหมาะสม
ubuntu@5a99103747c6:~/abseil-cpp$ bazel build --config={asan | tsan | msan} -- //absl/... -//absl/types:variant_test
สำรวจคอนเทนเนอร์ Bazel
เริ่ม Shell แบบอินเทอร์แอกทีฟภายในคอนเทนเนอร์ Bazel หากยังไม่ได้ทำ
docker run -it --entrypoint=/bin/bash gcr.io/bazel-public/bazel:latest
ubuntu@5a99103747c6:~$
สำรวจเนื้อหาคอนเทนเนอร์
ubuntu@5a99103747c6:~$ gcc --version gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 Copyright (C) 2019 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
ubuntu@5a99103747c6:~$ java -version openjdk version "1.8.0_362" OpenJDK Runtime Environment (build 1.8.0_362-8u372-ga~us1-0ubuntu1~20.04-b09) OpenJDK 64-Bit Server VM (build 25.362-b09, mixed mode)
ubuntu@5a99103747c6:~$ python -V Python 3.8.10
ubuntu@5a99103747c6:~$ bazel version WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a WORKSPACE file). Extracting Bazel installation... Build label: 6.2.1 Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Fri Jun 2 16:59:58 2023 (1685725198) Build timestamp: 1685725198 Build timestamp as int: 1685725198
สำรวจ Bazel Dockerfile
หากต้องการตรวจสอบวิธีสร้างอิมเมจ Bazel Docker คุณจะหา Dockerfile ของ Dockerfile ได้ที่ bazelbuild/continuous-integration/bazel/oci