2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-27 02:43:28 +00:00
rules_foreign_cc/examples/BUILD
irengrig 4c27a2bb9d
Exclude synthetic tests from Ubuntu 16 on CI (#102)
Their main target is Windows
2018-09-14 15:37:00 +02:00

34 lines
781 B
Python

tests = [
"//examples/cmake:test_libgd",
"//examples/cmake:test_libpng",
"//examples/cmake:test_zlib",
"//examples/cmake_cares:test_c_ares",
"//examples/cmake_hello_world_lib:test_hello",
"//examples/cmake_nghttp2:test_nghttp2",
"//examples/ninja:test_ninja_version",
"//test:cmake_script_test_suite",
]
tests_with_synthetic = tests + [
"//examples/cmake_synthetic:test_libs",
]
test_suite(
name = "tests",
tests = tests_with_synthetic,
)
test_suite(
name = "tests_no_synthetic",
tests = tests,
)
test_suite(
name = "win_tests",
tags = ["windows"],
tests = tests_with_synthetic + [
"//examples/cmake_hello_world_lib:test_hello_ninja",
"//examples/cmake_hello_world_lib:test_hello_nmake",
],
)