Skip to content

Commit 76a4466

Browse files
committed
Only run other.test_minimal_runtime_code_size_hello_embind
Currently `other.test_minimal_runtime_code_size_hello_embind` fails on CircleCI but not on my local machine. The expected size of `a.wasm` is greater on CircleCI but even their numbers are all different. The expected total size is 17651, which is also what my local machine's result. But in CI, it is 17655 in test-other, 17659 in test-mac-arm64, and 17667 in test-windows. I tried to log in to ssh in test-other CI and ran `other.test_minimal_runtime_code_size_hello_embind` manually in that environment. But the result's size is 17651, the same as the expected size, which is baffling. This commit is trying to make the CI only run `other.test_minimal_runtime_code_size_hello_embind` so that I can access the contents of `out/test` directory right after that execution. This is only for testing and will be reverted later.
1 parent 6d1960c commit 76a4466

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,8 @@ jobs:
806806
- run-tests-linux:
807807
# some native-dependent tests fail because of the lack of native
808808
# headers on emsdk-bundled clang
809-
test_targets: "other skip:other.test_native_link_error_message"
809+
test_targets: "
810+
other.test_minimal_runtime_code_size_hello_embind"
810811
test-browser-chrome:
811812
executor: bionic
812813
environment:
@@ -941,7 +942,8 @@ jobs:
941942
# Run a single websockify-based test to ensure it works on windows.
942943
- run-tests:
943944
title: "sockets.test_nodejs_sockets_echo*"
944-
test_targets: "sockets.test_nodejs_sockets_echo*"
945+
test_targets: "
946+
other.test_minimal_runtime_code_size_hello_embind"
945947
- upload-test-results
946948

947949
test-mac-arm64:
@@ -964,7 +966,7 @@ jobs:
964966
# are currently missing arm64 macos binaries.
965967
- run-tests:
966968
title: "crossplatform tests"
967-
test_targets: "--crossplatform-only"
969+
test_targets: "other.test_minimal_runtime_code_size_hello_embind"
968970
- upload-test-results
969971

970972
workflows:

0 commit comments

Comments
 (0)