File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
javascript/selenium-webdriver Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ Issues are labelled to make them easier to categorise and find by:
350350## Communication
351351
352352Selenium contributors frequent the ` #selenium ` channel on
353- [ ` irc.freenode.org ` ] ( https://webchat.freenode.net / ) . You can also join
353+ [ ` libera.chat ` ] ( https://web.libera.chat / ) . You can also join
354354the [ ` selenium-developers@ ` mailing list] ( https://groups.google.com/forum/#!forum/selenium-developers ) .
355355Check https://selenium.dev/support/ for a complete list of options to communicate.
356356
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ js_library(
5050
5151 http_archive (
5252 name = "linux_beta_firefox" ,
53- url = "https://ftp.mozilla.org/pub/firefox/releases/139.0b3 /linux-x86_64/en-US/firefox-139.0b3 .tar.xz" ,
54- sha256 = "8db541819ed4c06678e1678715c0d3f2cc43fba21c593dfc6a5f10c7674e98af " ,
53+ url = "https://ftp.mozilla.org/pub/firefox/releases/139.0b4 /linux-x86_64/en-US/firefox-139.0b4 .tar.xz" ,
54+ sha256 = "21bfb99fe445e64ad8fb86822fd6d77c9c0d387530b787f3c3fc99b97723d664 " ,
5555 build_file_content = """
5656load("@aspect_rules_js//js:defs.bzl", "js_library")
5757package(default_visibility = ["//visibility:public"])
@@ -72,8 +72,8 @@ js_library(
7272
7373 dmg_archive (
7474 name = "mac_beta_firefox" ,
75- url = "https://ftp.mozilla.org/pub/firefox/releases/139.0b3 /mac/en-US/Firefox%20139.0b3 .dmg" ,
76- sha256 = "a7433bb645cbef9dd123afe8856060dbf6afaa1bab06d14298ebbc7d35968984 " ,
75+ url = "https://ftp.mozilla.org/pub/firefox/releases/139.0b4 /mac/en-US/Firefox%20139.0b4 .dmg" ,
76+ sha256 = "c61d0fe161c6cb778a3e564f4cffa70cc7fb6bb5770586fa66c7db8ab9c31cf1 " ,
7777 build_file_content = """
7878load("@aspect_rules_js//js:defs.bzl", "js_library")
7979package(default_visibility = ["//visibility:public"])
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ script provided with `selenium-webdriver`.
116116API documentation is available online from the [ Selenium project] [ api ] .
117117Additional resources include
118118
119- - the #selenium channel on freenode IRC
119+ - the #selenium channel on Libera IRC
120120- the
[ [email protected] ] [ users ] list
121121- [ SeleniumHQ] ( https://selenium.dev/documentation/ ) documentation
122122
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ set -eufo pipefail
44# We want to see what's going on
55set -x
66
7+ # Define heap size for GitHub Actions runner
8+ HEAP_SIZE=" -Xmx4g"
9+
710# Default to auto if no parameter is provided
811CACHE_RESULTS=" auto"
912
1518# Now run the tests. The engflow build uses pinned browsers
1619# so this should be fine
1720# shellcheck disable=SC2046
18- bazel test --config=rbe-ci --build_tests_only \
21+ bazel --host_jvm_args= ${HEAP_SIZE} test --config=rbe-ci --build_tests_only \
1922 --keep_going --flaky_test_attempts=2 \
2023 --cache_test_results=${CACHE_RESULTS} \
2124 //... -- $( cat .skipped-tests | tr ' \n' ' ' )
You can’t perform that action at this time.
0 commit comments