sglang_v0.5.2/pytorch_2.8.0/third_party/opentelemetry-cpp/ci
hailin c8e8c1e9ff . 2025-09-20 16:09:34 +08:00
..
ports . 2025-09-20 16:09:34 +08:00
Dockerfile . 2025-09-20 16:09:34 +08:00
README.md . 2025-09-20 16:09:34 +08:00
do_ci.ps1 . 2025-09-20 16:09:34 +08:00
do_ci.sh . 2025-09-20 16:09:34 +08:00
docfx.cmd . 2025-09-20 16:09:34 +08:00
docfx.json . 2025-09-20 16:09:34 +08:00
install_abseil.sh . 2025-09-20 16:09:34 +08:00
install_bazelisk.sh . 2025-09-20 16:09:34 +08:00
install_format_tools.sh . 2025-09-20 16:09:34 +08:00
install_gcc48.sh . 2025-09-20 16:09:34 +08:00
install_osx_bazelisk.sh . 2025-09-20 16:09:34 +08:00
install_protobuf.sh . 2025-09-20 16:09:34 +08:00
install_windows_bazelisk.ps1 . 2025-09-20 16:09:34 +08:00
install_windows_protobuf.ps1 . 2025-09-20 16:09:34 +08:00
run_docker.sh . 2025-09-20 16:09:34 +08:00
setup_ci_environment.sh . 2025-09-20 16:09:34 +08:00
setup_cmake.sh . 2025-09-20 16:09:34 +08:00
setup_grpc.sh . 2025-09-20 16:09:34 +08:00
setup_windows_ci_environment.ps1 . 2025-09-20 16:09:34 +08:00
setup_windows_cmake.ps1 . 2025-09-20 16:09:34 +08:00
toc.yml . 2025-09-20 16:09:34 +08:00
valgrind-suppressions . 2025-09-20 16:09:34 +08:00
verify_packages.sh . 2025-09-20 16:09:34 +08:00

README.md

Building and running tests as a developer

CI tests can be run on docker by invoking the script ./ci/run_docker.sh ./ci/do_ci.sh {TARGET} where the targets are:

  • cmake.test: build cmake targets and run tests.
  • cmake.maintainer.test: build with cmake and test, in maintainer mode.
  • cmake.legacy.test: build cmake targets with gcc 4.8 and run tests.
  • cmake.c++20.test: build cmake targets with the C++20 standard and run tests.
  • cmake.test_example_plugin: build and test an example OpenTelemetry plugin.
  • cmake.exporter.otprotocol.test: build and test the otprotocol exporter
  • bazel.test: build bazel targets and run tests.
  • bazel.legacy.test: build bazel targets and run tests for the targets meant to work with older compilers.
  • bazel.noexcept: build bazel targets and run tests with exceptions disabled.
  • bazel.nortti: build bazel targets and run tests with runtime type identification disabled.
  • bazel.asan: build bazel targets and run tests with AddressSanitizer.
  • bazel.tsan: build bazel targets and run tests with ThreadSanitizer.
  • bazel.valgrind: build bazel targets and run tests under the valgrind memory checker.
  • benchmark: run all benchmarks.
  • format: use tools/format.sh to enforce text formatting.
  • third_party.tags: store third_party release tags.
  • code.coverage: build cmake targets with CXX option --coverage and run tests.

Additionally, ./ci/run_docker.sh can be invoked with no arguments to get a docker shell where tests can be run manually.