reorder toolchain targets to help clarity (#95)
This commit is contained in:
parent
c41adf3888
commit
5dccaa145e
|
@ -19,6 +19,15 @@ exit /b 1
|
|||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
toolchain(
|
||||
name = "cmd_toolchain",
|
||||
exec_compatible_with = [
|
||||
"@bazel_tools//platforms:windows",
|
||||
],
|
||||
toolchain = ":cmd",
|
||||
toolchain_type = TOOLCHAIN_TYPE,
|
||||
)
|
||||
|
||||
unittest_toolchain(
|
||||
name = "bash",
|
||||
failure_templ = """#!/bin/sh
|
||||
|
@ -33,15 +42,6 @@ exit 1
|
|||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
toolchain(
|
||||
name = "cmd_toolchain",
|
||||
exec_compatible_with = [
|
||||
"@bazel_tools//platforms:windows",
|
||||
],
|
||||
toolchain = ":cmd",
|
||||
toolchain_type = TOOLCHAIN_TYPE,
|
||||
)
|
||||
|
||||
toolchain(
|
||||
name = "bash_toolchain",
|
||||
toolchain = ":bash",
|
||||
|
|
Loading…
Reference in New Issue