Skip to content

Commit cd40251

Browse files
authored
Merge branch 'SeleniumHQ:trunk' into py-ruff
2 parents 119181e + 3ab2f49 commit cd40251

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Issues are labelled to make them easier to categorise and find by:
350350
## Communication
351351

352352
Selenium 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
354354
the [`selenium-developers@` mailing list](https://groups.google.com/forum/#!forum/selenium-developers).
355355
Check https://selenium.dev/support/ for a complete list of options to communicate.
356356

common/repositories.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 = """
5656
load("@aspect_rules_js//js:defs.bzl", "js_library")
5757
package(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 = """
7878
load("@aspect_rules_js//js:defs.bzl", "js_library")
7979
package(default_visibility = ["//visibility:public"])

javascript/selenium-webdriver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ script provided with `selenium-webdriver`.
116116
API documentation is available online from the [Selenium project][api].
117117
Additional 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

scripts/github-actions/ci-build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -eufo pipefail
44
# We want to see what's going on
55
set -x
66

7+
# Define heap size for GitHub Actions runner
8+
HEAP_SIZE="-Xmx4g"
9+
710
# Default to auto if no parameter is provided
811
CACHE_RESULTS="auto"
912

@@ -15,7 +18,7 @@ fi
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' ' ')

0 commit comments

Comments
 (0)