本頁面將詳細說明 Bazel 容器的內容、如何在 Bazel 容器中使用 Bazel 建構 abseil-cpp 專案,以及如何在主機上使用 Bazel 容器和目錄掛載功能,直接建構這個專案。
在主體機器中使用目錄掛接功能建立 Abseil 專案
您可以參考本節的操作說明,使用 Bazel 容器建構,並在主機環境中檢出來源。您執行的每個建構指令都會啟動容器。建構結果會在主機環境中快取,以便在各個建構作業中重複使用。
將專案複製到主機電腦中的目錄。
git clone 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 容器搭配容器內的來源進行建構。只要在開發工作流程一開始時啟動容器,並在容器內的工作區中進行變更,系統就會快取建構結果。
在 Bazel 容器中啟動殼層:
docker run --interactive --entrypoint=/bin/bash gcr.io/bazel-public/bazel:latest
每個容器 ID 均不得重複。在下列操作說明中,容器為 5a99103747c6。
複製專案。
root@5a99103747c6:~# git clone https://github.com/abseil/abseil-cpp.git && cd abseil-cpp/
執行一般版本。
root@5a99103747c6:~/abseil-cpp# bazel build //absl/...
新增 --config=asan|tsan|msan
建構標記,以便選取 AddressSanitizer (asan)、ThreadSanitizer (tsan) 或 MemorySanitizer (msan),藉此使用消毒劑建構專案。
root@5a99103747c6:~/abseil-cpp# bazel build --config=--config={asan | tsan | msan} -- //absl/... -//absl/types:variant_test
探索 Bazel 容器
如果您尚未啟動 Bazel 容器中的互動式殼層,請先完成這項操作。
docker run -it --entrypoint=/bin/bash gcr.io/bazel-public/bazel:latest
root@5a99103747c6:/#
探索容器內容。
root@5a99103747c6:/# clang --version clang version 8.0.0 (trunk 340178) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /usr/local/bin
root@5a99103747c6:/# java -version openjdk version "1.8.0_181" OpenJDK Runtime Environment (build 1.8.0_181-8u181-b13-0ubuntu0.16.04.1-b13) OpenJDK 64-Bit Server VM (build 25.181-b13, mixed mode)
root@5a99103747c6:/# python -V Python 2.7.12
root@5a99103747c6:/# python3 -V Python 3.6.6
root@5a99103747c6:/# bazel version Extracting Bazel installation... Build label: 6.0.0 Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Mon Dec 19 15:52:35 2022 (1671465155) Build timestamp: 1671465155 Build timestamp as int: 1671465155