mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-27 02:43:28 +00:00
540253c265
* Implement support for "pure" GNU Make in make.bzl Usage: load("@rules_foreign_cc//tools/build_defs:make.bzl", "make") make(name = <name>, lib_source = <source>), please see more arguments in make.bzl Add test in examples/simple_make (runs only on Linux because of Makefile contents)
111 lines
3.6 KiB
Python
111 lines
3.6 KiB
Python
load("@foreign_cc_platform_utils//:bazel_version.bzl", "BAZEL_VERSION")
|
|
load(":select_windows_tests.bzl", "select_windows_tests")
|
|
|
|
tests = [
|
|
"//cmake:test_libgd",
|
|
"//cmake:test_libpng",
|
|
"//cmake:test_zlib",
|
|
"//cmake_cares:test_c_ares",
|
|
"//cmake_cares:test_old_c_ares",
|
|
"//cmake_hello_world_lib/static:test_hello",
|
|
"//cmake_nghttp2:test_nghttp2",
|
|
# Commented out because the paths in shell test should be different depending on whether it called
|
|
# from out workspace or same workspace
|
|
# Uncomment after nested workspaces are supported on CI
|
|
# "//built_ninja:test_ninja_version",
|
|
"@rules_foreign_cc//test:cmake_script_test_suite",
|
|
"@rules_foreign_cc//test:shell_script_conversion_suite",
|
|
"@rules_foreign_cc//test:utils_test_suite",
|
|
"//cc_configure_make:libevent_echosrv1",
|
|
]
|
|
|
|
test_suite(
|
|
name = "tests",
|
|
tests = tests + [
|
|
"//cmake_synthetic:test_libs",
|
|
"//cmake_with_bazel_transitive:test",
|
|
"//configure_gnuplot:configure_libgd_tests",
|
|
"//cmake_hello_world_lib/shared:test_libhello",
|
|
"//cmake_hello_world_lib/binary:test_binary",
|
|
"//configure_with_bazel_transitive:test",
|
|
"//simple_make:test_lib",
|
|
"//cmake_hello_world_variant:test_hello_world",
|
|
],
|
|
)
|
|
|
|
test_suite(
|
|
name = "cmake_tests",
|
|
tests = tests + [
|
|
"//cmake_synthetic:test_libs",
|
|
"//cmake_hello_world_lib/shared:test_libhello",
|
|
"//cmake_hello_world_lib/binary:test_binary",
|
|
],
|
|
)
|
|
|
|
test_suite(
|
|
name = "tests_no_synthetic",
|
|
tests = tests + ["//configure_gnuplot:configure_libgd_tests"],
|
|
)
|
|
|
|
# As Bazel 0.22.0 is broken for rules_foreign_cc on Windows, we do not want to run any tests
|
|
# with this version on CI
|
|
# So we are selecting the list of tests to run according to recorded-in-workspace
|
|
# Bazel version.
|
|
# But list of tests can not be empty! Instead, have a test that just prints the Bazel version.
|
|
windows_tests = select_windows_tests(
|
|
BAZEL_VERSION,
|
|
tests + [
|
|
# "//cmake_synthetic:test_libs",
|
|
# "//configure_gnuplot:configure_libgd_tests",
|
|
"//cmake_hello_world_lib/static:test_hello_ninja",
|
|
"//cmake_hello_world_variant:test_hello_world",
|
|
# "//cmake_hello_world_lib/static:test_hello_nmake",
|
|
],
|
|
[":bazel_version"],
|
|
)
|
|
|
|
test_suite(
|
|
name = "win_tests",
|
|
tags = ["windows"],
|
|
tests = windows_tests,
|
|
)
|
|
|
|
sh_test(
|
|
name = "bazel_version",
|
|
srcs = ["print_bazel_version.sh"],
|
|
args = [BAZEL_VERSION],
|
|
tags = ["windows"],
|
|
)
|
|
|
|
# On Bazel CI Mac machines, we are using cmake built from sources
|
|
toolchain(
|
|
name = "built_cmake_toolchain",
|
|
exec_compatible_with = [
|
|
"@bazel_tools//platforms:osx",
|
|
"@bazel_tools//platforms:x86_64",
|
|
],
|
|
toolchain = "@rules_foreign_cc//tools/build_defs/native_tools:built_cmake",
|
|
toolchain_type = "@rules_foreign_cc//tools/build_defs:cmake_toolchain",
|
|
)
|
|
|
|
# On Bazel CI Mac machines, we are using ninja built from sources
|
|
toolchain(
|
|
name = "built_ninja_toolchain_osx",
|
|
exec_compatible_with = [
|
|
"@bazel_tools//platforms:osx",
|
|
"@bazel_tools//platforms:x86_64",
|
|
],
|
|
toolchain = "@rules_foreign_cc//tools/build_defs/native_tools:built_ninja",
|
|
toolchain_type = "@rules_foreign_cc//tools/build_defs:ninja_toolchain",
|
|
)
|
|
|
|
toolchain(
|
|
name = "built_ninja_toolchain_linux",
|
|
exec_compatible_with = [
|
|
"@bazel_tools//platforms:linux",
|
|
"@bazel_tools//platforms:x86_64",
|
|
],
|
|
toolchain = "@rules_foreign_cc//tools/build_defs/native_tools:built_ninja",
|
|
toolchain_type = "@rules_foreign_cc//tools/build_defs:ninja_toolchain",
|
|
)
|