File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -441,10 +441,17 @@ jobs:
441441 run : |
442442 git submodule update --init --recursive
443443
444- - name : Install tools
444+ - name : Install tools (xxd + WASI SDK)
445445 run : |
446446 sudo apt-get update
447447 sudo apt-get install -y wget build-essential
448+ wget https://github.com/vim/vim/archive/refs/tags/v9.1.1000.tar.gz -O vim.tar.gz
449+ tar -xvf vim.tar.gz
450+ cd vim-9.1.1000/src && make -j$(nproc) && sudo cp xxd/xxd /usr/local/bin/xxd
451+
452+ wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-25/wasi-sdk-25.0-x86_64-linux.tar.gz
453+ tar -xvf wasi-sdk-25.0-x86_64-linux.tar.gz
454+ sudo mv wasi-sdk-25.0-x86_64-linux /opt/wasi-sdk
448455 env :
449456 WASI_SDK_PATH : /opt/wasi-sdk
450457
@@ -474,7 +481,7 @@ jobs:
474481 WASM_FILE=$GITHUB_WORKSPACE/b_u585i-modbus-server/modbus-server.wasm
475482 west -v build --pristine=auto -b b_u585i_iot02a ./application -d build -- \
476483 -DMODULE_EXT_ROOT=$(pwd)/application \
477- -DOCRE_INPUT_FILE=$WASM_FILE \
484+ -DOCRE_INPUT_FILE=$WASM_FILE \
478485 -DTARGET_PLATFORM_NAME=Zephyr
479486
480487 west flash
You can’t perform that action at this time.
0 commit comments