File tree 5 files changed +13
-22
lines changed
5 files changed +13
-22
lines changed Original file line number Diff line number Diff line change
1
+ # TODO Re-enable lockfile when supported by Renovate
2
+ # Blocked by https://github.com/renovatebot/renovate/issues/25557
3
+
1
4
# honor the setting of `skipLibCheck` in the tsconfig.json file; parameter required for aspect_rules_ts.
2
- build --enable_bzlmod --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
3
- fetch --enable_bzlmod --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
4
- query --enable_bzlmod --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
5
+ build --lockfile_mode=off --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
6
+ fetch --lockfile_mode=off --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
7
+ query --lockfile_mode=off --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
Original file line number Diff line number Diff line change 1
- 6.4 .0
1
+ 7.0 .0
Original file line number Diff line number Diff line change @@ -14,13 +14,7 @@ def chromium_data_dependencies():
14
14
name = "chromedriver" ,
15
15
build_file_content =
16
16
"""
17
- genrule(
18
- name = "chromedriver",
19
- srcs = [":chromedriver_linux64/chromedriver"],
20
- outs = ["chromedriver.bin"],
21
- cmd = "ln $(location //:chromedriver_linux64/chromedriver) $@",
22
- visibility = ["//visibility:public"],
23
- )
17
+ exports_files(["chromedriver_linux64/chromedriver"])
24
18
""" ,
25
19
sha256 = "30c27c17133bf3622f0716e1bc70017dc338a6920ea1b1f3eb15f407150b927c" ,
26
20
# File within archive: chromedriver_linux64/chromedriver
@@ -32,13 +26,7 @@ genrule(
32
26
name = "chromium" ,
33
27
build_file_content =
34
28
"""
35
- genrule(
36
- name = "chromium",
37
- srcs = [":chrome-linux/chrome"],
38
- outs = ["chromium.bin"],
39
- cmd = "ln $(location //:chrome-linux/chrome) $@",
40
- visibility = ["//visibility:public"],
41
- )
29
+ exports_files(["chrome-linux/chrome"])
42
30
""" ,
43
31
sha256 = "53899aaf90d9b9768dbc54beb869a314bdc8f4d04c2ef7bab2cb480581cfa197" ,
44
32
# File within archive: chrome-linux/chrome
Original file line number Diff line number Diff line change 9
9
data = [
10
10
"//:chrome-ssh-agent.zip" ,
11
11
"//:chrome-ssh-agent-beta.zip" ,
12
- "@chromedriver" ,
13
- "@chromium" ,
12
+ "@chromedriver//:chromedriver_linux64/chromedriver " ,
13
+ "@chromium//:chrome-linux/chrome " ,
14
14
],
15
15
importpath = "github.com/google/chrome-ssh-agent/test" ,
16
16
deps = [
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import (
17
17
)
18
18
19
19
var (
20
- chromeDriverPath = testutil .MustRunfile ("_main~chromium_dependencies~chromedriver/chromedriver.bin " )
21
- chromePath = testutil .MustRunfile ("_main~chromium_dependencies~chromium/chromium.bin " )
20
+ chromeDriverPath = testutil .MustRunfile ("_main~chromium_dependencies~chromedriver/chromedriver_linux64/ chromedriver" )
21
+ chromePath = testutil .MustRunfile ("_main~chromium_dependencies~chromium/chrome-linux/chrome " )
22
22
)
23
23
24
24
func getElementText (wd selenium.WebDriver , id string ) (string , error ) {
You can’t perform that action at this time.
0 commit comments