mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-12-25 03:11:46 -08:00
| .. | ||
| ports/protobuf | ||
| do_ci.ps1 | ||
| do_ci.sh | ||
| docfx.cmd | ||
| docfx.json | ||
| fix-abseil-cpp-issue-1536.patch | ||
| install_abseil.sh | ||
| install_bazelisk.sh | ||
| install_format_tools.sh | ||
| install_gcc48.sh | ||
| install_osx_bazelisk.sh | ||
| install_protobuf.sh | ||
| install_windows_bazelisk.ps1 | ||
| install_windows_protobuf.ps1 | ||
| README.md | ||
| run_docker.sh | ||
| setup_ci_environment.sh | ||
| setup_cmake.ps1 | ||
| setup_cmake.sh | ||
| setup_cmake_macos.sh | ||
| setup_gcc10.sh | ||
| setup_googletest.sh | ||
| setup_grpc.sh | ||
| setup_windows_ci_environment.ps1 | ||
| toc.yml | ||
| valgrind-suppressions | ||
| verify_packages.sh | ||
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.