2
0
Fork 0
mirror of https://github.com/bazelbuild/bazel-skylib synced 2024-11-27 05:43:25 +00:00
bazel-skylib/.bazelci/presubmit.yml
c-parsons baaef76aaa
Add analysis_test rule
Targets of this rule verify that targets can be analyzed successfully.
This is similar to build_test, except no actual action execution of
the underlying targets occur. analysis_test essentially verifies that
`bazel build [targets] --nobuild` passes.
2019-02-19 15:16:36 -05:00

33 lines
553 B
YAML

---
platforms:
ubuntu1404:
build_targets:
- "..."
test_targets:
- "..."
test_flags:
- "--test_env=PATH"
ubuntu1604:
build_targets:
- "..."
test_targets:
- "..."
test_flags:
- "--test_env=PATH"
macos:
build_targets:
- "..."
test_targets:
- "..."
test_flags:
- "--test_env=PATH"
windows:
build_targets:
- "..."
test_targets:
- "--"
- "..."
# Shell tests don't run on windows.
- "-//tests:analysis_test_e2e_test"
- "-//tests:unittest_e2e_test"