Phase 1 complete: load + execute Wasm modules from VCL #2
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| varnish-version: ['7.5'] | |
| wasmtime-version: ['25.0.0'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and test in Docker | |
| run: | | |
| docker build \ | |
| --build-arg VARNISH_VERSION=${{ matrix.varnish-version }} \ | |
| --build-arg WASMTIME_VERSION=${{ matrix.wasmtime-version }} \ | |
| -t vmod-wasm-test . | |
| docker run --rm vmod-wasm-test make check |