Skip to content
Open
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
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,20 @@ jobs:
wasm64l.test_longjmp2_emscripten
wasm64l.test_embind_val_basics_legacy"
- upload-test-results
test-bun:
executor: linux-python
steps:
- checkout
- pip-install
- install-emsdk
- run:
name: install bun
command: |
curl -fsSL https://bun.com/install | bash
echo "BUN_ENGINE = os.path.expanduser('~/.bun/bin/bun')" >> ~/emsdk/.emscripten
echo "JS_ENGINES = [BUN_ENGINE]" >> ~/emsdk/.emscripten
- run-tests:
test_targets: "core0.test_hello_world"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps it would be faster to append the install bun and run tests steps to another runner, saving the checkout/pip/install-emsdk steps?

test-jsc:
executor: linux-python
steps:
Expand Down Expand Up @@ -1362,6 +1376,7 @@ workflows:
- test-sockets-chrome:
requires:
- build-linux
- test-bun
- test-jsc
- test-spidermonkey
- test-node-compat
Expand Down