gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/runtimes/BUILD (about)

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