Skip to content
Merged
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
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,22 @@ jobs:
core0.test_hello_argc_pthreads
core2.test_pthread_create
"
test-deno:
executor: linux-python
steps:
- checkout
- pip-install
- install-emsdk
- run:
name: install deno
command: |
curl -fsSL https://deno.land/install.sh | sh
echo "DENO = [os.path.expanduser('~/.deno/bin/deno'), '--allow-read', '--unstable-detect-cjs']" >> ~/emsdk/.emscripten
echo "JS_ENGINES = [DENO]" >> ~/emsdk/.emscripten
- run-tests:
test_targets: "
core0.test_hello_world
"
test-jsc:
executor: linux-python
steps:
Expand Down Expand Up @@ -1385,6 +1401,7 @@ workflows:
requires:
- build-linux
- test-bun
- test-deno
- test-jsc
- test-spidermonkey
- test-node-compat
Expand Down