File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,16 +33,24 @@ alias(
3333
3434java_binary (
3535 name = "server" ,
36+ args = [
37+ "standalone" ,
38+ "--relax-checks" ,
39+ "true" ,
40+ ],
41+ data = chrome_data + firefox_data ,
42+ jvm_flags = chrome_jvm_flags + firefox_jvm_flags ,
3643 main_class = "org.openqa.selenium.grid.Bootstrap" ,
3744 runtime_deps = [
3845 "//java/server/src/org/openqa/selenium/grid" ,
3946 artifact ("org.slf4j:slf4j-jdk14" ),
4047 ],
41- jvm_flags = chrome_jvm_flags + firefox_jvm_flags ,
42- data = chrome_data + firefox_data ,
43- args = [
44- "standalone" ,
45- "--relax-checks" ,
46- "true" ,
48+ )
49+
50+ platform (
51+ name = "rosetta" ,
52+ constraint_values = [
53+ "@platforms//os:osx" ,
54+ "@platforms//cpu:x86_64" ,
4755 ],
4856)
Original file line number Diff line number Diff line change @@ -58,6 +58,10 @@ The following command should work:
5858xcode-select --install
5959```
6060
61+ * Users of Apple Silicon Macs should add `build
62+ --host_platform=//: rosetta ` to their ` .bazelrc.local` file. We are working
63+ to make sure this isn't required in the long run.
64+
6165* Windows users should have the latest version of Visual Studio command line tools and build tools installed
6266 * ` BAZEL_VS ` environment variable should point to the location of the build tools,
6367 e.g. ` C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools `
You can’t perform that action at this time.
0 commit comments