github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/runtimes/BUILD (about)

     1  load("//tools:defs.bzl", "bzl_library", "more_shards", "most_shards")
     2  load("//test/runtimes:defs.bzl", "runtime_test")
     3  
     4  package(licenses = ["notice"])
     5  
     6  runtime_test(
     7      name = "go1.12",
     8      exclude_file = "exclude/go1.12.csv",
     9      lang = "go",
    10      shard_count = more_shards,
    11  )
    12  
    13  runtime_test(
    14      name = "java11",
    15      batch = 100,
    16      exclude_file = "exclude/java11.csv",
    17      lang = "java",
    18      shard_count = most_shards,
    19  )
    20  
    21  runtime_test(
    22      name = "nodejs12.4.0",
    23      exclude_file = "exclude/nodejs12.4.0.csv",
    24      lang = "nodejs",
    25      shard_count = most_shards,
    26  )
    27  
    28  runtime_test(
    29      name = "php7.3.6",
    30      exclude_file = "exclude/php7.3.6.csv",
    31      lang = "php",
    32      shard_count = more_shards,
    33  )
    34  
    35  runtime_test(
    36      name = "python3.7.3",
    37      exclude_file = "exclude/python3.7.3.csv",
    38      lang = "python",
    39      shard_count = more_shards,
    40  )
    41  
    42  bzl_library(
    43      name = "defs_bzl",
    44      srcs = ["defs.bzl"],
    45      visibility = ["//visibility:private"],
    46  )