Using the local wabt toolchain #886
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |