forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselenium_manager.bzl
32 lines (26 loc) · 1.25 KB
/
selenium_manager.bzl
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
# This file has been generated using `bazel run scripts:selenium_manager`
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
def selenium_manager():
http_file(
name = "download_sm_linux",
executable = True,
sha256 = "8fa14a9c6e36de33485d69915861fe6d459f854f56d4b70e7f07f1783c4f4f08",
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-694e399/selenium-manager-linux",
)
http_file(
name = "download_sm_macos",
executable = True,
sha256 = "c3c08dd30bb2ede7996574be09aeac2d452bf232b9f0d77568765adeac1f2af9",
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-694e399/selenium-manager-macos",
)
http_file(
name = "download_sm_windows",
executable = True,
sha256 = "b7f87a63eb197a8e3a85d553755fec79a259f57c1216169e2377db2b89bc6b8b",
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-694e399/selenium-manager-windows.exe",
)
def _selenium_manager_artifacts_impl(_ctx):
selenium_manager()
selenium_manager_artifacts = module_extension(
implementation = _selenium_manager_artifacts_impl,
)