You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
9 months ago | |
|---|---|---|
| .. | ||
| ports/protobuf | 9 months ago | |
| README.md | 9 months ago | |
| do_ci.ps1 | 9 months ago | |
| do_ci.sh | 9 months ago | |
| docfx.cmd | 9 months ago | |
| docfx.json | 9 months ago | |
| fix-abseil-cpp-issue-1536.patch | 9 months ago | |
| install_abseil.sh | 9 months ago | |
| install_bazelisk.sh | 9 months ago | |
| install_format_tools.sh | 9 months ago | |
| install_gcc48.sh | 9 months ago | |
| install_osx_bazelisk.sh | 9 months ago | |
| install_protobuf.sh | 9 months ago | |
| install_windows_bazelisk.ps1 | 9 months ago | |
| install_windows_protobuf.ps1 | 9 months ago | |
| run_docker.sh | 9 months ago | |
| setup_ci_environment.sh | 9 months ago | |
| setup_cmake.ps1 | 9 months ago | |
| setup_cmake.sh | 9 months ago | |
| setup_cmake_macos.sh | 9 months ago | |
| setup_gcc10.sh | 9 months ago | |
| setup_googletest.sh | 9 months ago | |
| setup_grpc.sh | 9 months ago | |
| setup_windows_ci_environment.ps1 | 9 months ago | |
| toc.yml | 9 months ago | |
| valgrind-suppressions | 9 months ago | |
| verify_packages.sh | 9 months ago | |
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}or inside
devcontainer
by invoking the script
./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 exporterbazel.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: usetools/format.shto enforce text formatting.third_party.tags: store third_party release tags.code.coverage: build cmake targets with CXX option--coverageand run tests.
Additionally, ./ci/run_docker.sh can be invoked with no arguments to get a
docker shell where tests can be run manually.