Build WWW #10
Workflow file for this run
This file contains 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: Build WWW | |
on: workflow_dispatch | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
ocaml-compiler: | |
- "5.1" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@v4 | |
- name: Set-up OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
- run: | | |
opam install dune menhir zarith js_of_ocaml js_of_ocaml-ppx zarith_stubs_js | |
opam exec -- make Version.ml | |
opam exec -- dune build tools/cat2html.exe | |
opam exec -- make -C herd-www | |
- name: www | |
uses: actions/upload-artifact@v4 | |
with: | |
name: www | |
path: | | |
herd-www/www |