gengo: make test tooling repo-local and remove legacy libsc shim #6
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: gengo-ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Zig | |
| uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.14.1 | |
| - name: Install wasmtime | |
| run: | | |
| curl -sSf https://wasmtime.dev/install.sh | bash | |
| echo "$HOME/.wasmtime/bin" >> "$GITHUB_PATH" | |
| - name: Build WASI binary | |
| run: make wasi | |
| - name: Run conformance tests | |
| run: make test |