We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86aebd7 commit 0237ed1Copy full SHA for 0237ed1
.github/workflows/build.yaml
@@ -406,6 +406,13 @@ jobs:
406
run: |
407
for BUILD_TYPE in default python_lib; do
408
case $BUILD_TYPE in
409
+ # We want to build various standalone example apps
410
+ # (similar to what examples-linux-standalone.yaml
411
+ # does), so use target_os="all" to get those picked
412
+ # up as part of the "unified" build. But then to
413
+ # save CI resources we want to exclude the
414
+ # "host clang" build, which uses the pigweed
415
+ # clang.
416
"default") GN_ARGS='target_os="all" is_asan=true enable_host_clang_build=false';;
417
"python_lib") GN_ARGS='enable_rtti=true enable_pylib=true';;
418
esac
0 commit comments