本頁將詳細說明 Bazel 容器的內容、建構方式 使用 Bazel 的 abseil-cpp 專案 以及如何直接建構此專案 從主機機器使用 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 容器進行建構 容器內的原始碼首先啟動容器 並做出變更 就能快取建構結果
在 Bazel 容器中啟動殼層:
docker run --interactive --entrypoint=/bin/bash gcr.io/bazel-public/bazel:latest
每個容器 ID 均不得重複。在下方操作說明中,容器為 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
,使用掃毒程式建構專案
建構旗標,選取 AddressSanitizer (asan)、ThreadSanitizer (tsan) 或
接著使用 MemorySanitizer (msan)。
ubuntu@5a99103747c6:~/abseil-cpp$ bazel build --config={asan | tsan | msan} -- //absl/... -//absl/types:variant_test
探索 Bazel 容器
如果您尚未啟動 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 映像檔的建構方式,可以前往 bazelbuild/continuous-integration/bazel/oci 找到其 Dockerfile。