mirror of
https://github.com/bazelbuild/bazel-skylib
synced 2024-11-27 05:43:25 +00:00
baaef76aaa
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.
33 lines
553 B
YAML
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"
|