Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Split browser64_4gb into its own runner #21182

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ jobs:
other.test_memory64_proxies
other.test_failing_growth_wasm64"
- upload-test-results
test-wasm64_4gb:
test-wasm64-4gb:
environment:
LANG: "C.UTF-8"
# Only run 2 tests at a time to avoid OOM (since each tests used >4gb)
Expand Down Expand Up @@ -805,11 +805,14 @@ jobs:
steps:
- run-tests-chrome:
title: "browser64"
# skip test_4gb_fail as it OOMs on the current bot
# Run a few tests in browser64_4gb mode too.
test_targets: "browser64"
test-browser-chrome-wasm64-4gb:
executor: bionic
steps:
- run-tests-chrome:
title: "browser64_4gb"
test_targets: "
browser64
skip:browser64.test_4gb_fail
browser64_4gb.test_TextDecoder*
browser64_4gb.test_async_*
browser64_4gb.test_audio_worklet*
browser64_4gb.test_emscripten_log
Expand Down Expand Up @@ -953,7 +956,7 @@ workflows:
- test-wasm64:
requires:
- build-linux
- test-wasm64_4gb:
- test-wasm64-4gb:
requires:
- build-linux
- test-wasm64l:
Expand All @@ -971,6 +974,9 @@ workflows:
- test-browser-chrome-wasm64:
requires:
- build-linux
- test-browser-chrome-wasm64-4gb:
requires:
- build-linux
- test-browser-firefox:
requires:
- build-linux
Expand Down
1 change: 0 additions & 1 deletion test/test_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4555,7 +4555,6 @@ def test_utf8_textdecoder(self):
def test_utf16_textdecoder(self):
self.btest_exit('benchmark/benchmark_utf16.cpp', 0, args=['--embed-file', test_file('utf16_corpus.txt') + '@/utf16_corpus.txt', '-sEXPORTED_RUNTIME_METHODS=[UTF16ToString,stringToUTF16,lengthBytesUTF16]'])

@no_wasm64()
@parameterized({
'': ([],),
'closure': (['--closure=1'],),
Expand Down
Loading