Skip to content

Using the local wabt toolchain #886

Using the local wabt toolchain

Using the local wabt toolchain #886

Workflow file for this run

name: develop
on:
pull_request:
push:
jobs:
develop:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Wabt
run: |
python script/build_wabt.py
echo $(pwd)/res/wabt/bin >> $GITHUB_PATH
- name: Test
run: |
python -m pip install --editable .
python script/build_spec.py
python script/build_wasi.py
python test/example.py
python test/spec.py
python test/wasi.py