File tree Expand file tree Collapse file tree 2 files changed +58
-1
lines changed Expand file tree Collapse file tree 2 files changed +58
-1
lines changed Original file line number Diff line number Diff line change 1
1
bcr_test_module :
2
- module_path : " examples/rules_js "
2
+ module_path : " e2e/smoke "
3
3
matrix :
4
4
platform : ["ubuntu2004"]
5
5
bazel : ["8.x"]
Original file line number Diff line number Diff line change
1
+ load ("//playwright:defs.bzl" , "LINUX_DISTROS" , "MACOS_VERSIONS" )
2
+
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ config_setting (
6
+ name = "linux_x86_64" ,
7
+ constraint_values = [
8
+ "@platforms//cpu:x86_64" ,
9
+ "@platforms//os:linux" ,
10
+ ],
11
+ )
12
+
13
+ config_setting (
14
+ name = "linux_arm64" ,
15
+ constraint_values = [
16
+ "@platforms//cpu:arm64" ,
17
+ "@platforms//os:linux" ,
18
+ ],
19
+ )
20
+
21
+ config_setting (
22
+ name = "macos_x86_64" ,
23
+ constraint_values = [
24
+ "@platforms//cpu:x86_64" ,
25
+ "@platforms//os:macos" ,
26
+ ],
27
+ )
28
+
29
+ config_setting (
30
+ name = "macos_arm64" ,
31
+ constraint_values = [
32
+ "@platforms//cpu:arm64" ,
33
+ "@platforms//os:macos" ,
34
+ ],
35
+ )
36
+
37
+ config_setting (
38
+ name = "mac{}" .format (version ),
39
+ values = {
40
+ "//:macos_version" : version ,
41
+ },
42
+ )
43
+
44
+ [
45
+
46
+ for version in MACOS_VERSIONS
47
+ ]
48
+
49
+ [
50
+ config_setting (
51
+ name = distro ,
52
+ values = {
53
+ "//:linux_distro" : distro ,
54
+ },
55
+ )
56
+ for distro in LINUX_DISTROS
57
+ ]
You can’t perform that action at this time.
0 commit comments