xref: /aosp_15_r20/external/openscreen/docs/continuous_build.md (revision 3f982cf4871df8771c9d4abe6e9a6f8d829b2736)
1# Continuous build and try jobs
2
3Open Screen uses [LUCI builders](https://ci.chromium.org/p/openscreen/builders)
4to monitor the build and test health of the library.
5
6Current builders include:
7
8| Name                   | Arch   | OS                     | Toolchain | Build   | Notes                  |
9|------------------------|--------|------------------------|-----------|---------|------------------------|
10| linux64_debug          | x86-64 | Ubuntu Linux 18.04     | clang     | debug   | ASAN enabled           |
11| linux_arm64_debug      | arm64  | Ubuntu Linux 20.04 [*] | clang     | debug   |                        |
12| linux64_gcc_debug      | x86-64 | Ubuntu Linux 18.04     | gcc-7     | debug   |                        |
13| linux64_tsan           | x86-64 | Ubuntu Linux 18.04     | clang     | release | TSAN enabled           |
14| linux64_coverage_debug | x86-64 | Ubuntu Linux 18.04     | clang     | debug   | used for code coverage |
15| linux64_cast_e2e     | x86-64 | Ubuntu Linux 18.04     | clang     | debug   | Builds cast standalone |
16| mac_debug              | x86-64 | Mac OS X/Xcode         | clang     | debug   |                        |
17| chromium_linux64_debug | x86-64 | Ubuntu Linux 18.04     | clang     | debug   | built with chromium    |
18| chromium_mac_debug     | x86-64 | Mac OS X 10.15         | clang     | debug   | built with chromium    |
19<br />
20
21[*] Tests run on Ubuntu 20.04, but are cross-compiled to arm64 with a debian stretch sysroot.
22
23The chromium_ builders compile against Chromium top-of-tree to ensure that
24changes can be autorolled into Chromium.
25
26You can run a patch through all builders using `git cl try` or the Gerrit Web
27interface.  All builders are run as part of the commit queue and are also run
28continuously in our CI.
29