aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2021-09-13 14:35:40 +0200
committerUlf Lilleengen <[email protected]>2021-09-13 16:42:39 +0200
commite24528051b9ed26157bee93e32e37e7b06b8f4cc (patch)
treebb0c4f201a6a7df9099d27b3a64f92036d645d45 /.github
parentf1c35b40c74db489da8e04f1c2e87a1d4030c617 (diff)
Add WASM support for executor
* Adds an executor for WASM runtimes based on wasm_bindgen. * Add time driver based on JS time handling. * Add example that can run in browser locally. * Update to critical-section version that supports 'std' flag
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 3ddda1a34..79a5ad796 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -94,6 +94,8 @@ jobs:
94 target: thumbv6m-none-eabi 94 target: thumbv6m-none-eabi
95 - package: examples/stm32g0 95 - package: examples/stm32g0
96 target: thumbv6m-none-eabi 96 target: thumbv6m-none-eabi
97 - package: examples/wasm
98 target: wasm32-unknown-unknown
97 steps: 99 steps:
98 - uses: actions/checkout@v2 100 - uses: actions/checkout@v2
99 with: 101 with: