-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
60 lines (52 loc) · 1.58 KB
/
BUILD.bazel
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
load("@rules_multirun//:defs.bzl", "command", "multirun")
###############################################################################
# RUST RELEASE MODE OPTIMIZATION
###############################################################################
config_setting(
name = "release",
values = {
"compilation_mode": "opt",
},
)
###############################################################################
# PUSH CONTAINERS
###############################################################################
multirun(
name = "push",
commands = [
# IMS Data integrations
"binance_coin_future_push",
"binance_coin_future_testnet_push",
"binance_spot_push",
"binance_spot_testnet_push",
"binance_usd_future_push",
"binance_usd_future_testnet_push",
],
jobs = 0, # Set to 0 to run in parallel
visibility = ["//visibility:public"],
)
# IMS Data integrations
command(
name = "binance_coin_future_push",
command = "//alias/service:binance_coin_future_push",
)
command(
name = "binance_coin_future_testnet_push",
command = "//alias/service:binance_coin_future_testnet_push",
)
command(
name = "binance_spot_push",
command = "//alias/service:binance_spot_push",
)
command(
name = "binance_spot_testnet_push",
command = "//alias/service:binance_spot_testnet_push",
)
command(
name = "binance_usd_future_push",
command = "//alias/service:binance_usd_future_push",
)
command(
name = "binance_usd_future_testnet_push",
command = "//alias/service:binance_usd_future_testnet_push",
)