-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdef.bzl
More file actions
26 lines (19 loc) · 864 Bytes
/
def.bzl
File metadata and controls
26 lines (19 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""Defines public definitions for rules_acx_tools.
A toolkit for working with a variety of common open source tools. These tools are
meant to unify testing, building, and execution for tools I commonly use.
"""
load("//internal:prometheus.bzl", _prom_test = "prom_test")
load("//internal:nomad.bzl", _levant = "levant", _nomad_deploy = "nomad_deploy")
load("//internal:opa.bzl", _opa_bundle = "opa_bundle", _opa_test = "opa_test")
load("//internal:vector.bzl", _vector_test = "vector_test", _vector_validate_test = "vector_validate_test")
load("//internal/init:toolchain.bzl", _toolchain = "toolchain")
""" Public rules """
prom_test = _prom_test
levant = _levant
nomad_deploy = _nomad_deploy
opa_test = _opa_test
opa_bundle = _opa_bundle
vector_test = _vector_test
vector_validate_test = _vector_validate_test
""" Toolchains """
acx_toolchain = _toolchain