DEBUG #4
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: Test binaryen | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-latest | |
| ocaml-compiler: | |
| - "4.14" | |
| - "5.02" | |
| - "5.03" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Set-up OCaml ${{ matrix.ocaml-compiler }} | |
| uses: ocaml/setup-ocaml@v3 | |
| with: | |
| ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
| - run: opam install binaryen-bin | |
| - run: opam exec -- which wasm-opt.exe | |
| - run: opam exec -- ldd D:\a\wasm_of_ocaml\wasm_of_ocaml\_opam\bin\wasm-opt.exe | |
| - run: opam install wasm_of_ocaml-compiler |