Build Bam #7
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 | |
run-name: Build Bam | |
on: [push] | |
jobs: | |
build_matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocaml-compiler: [ | |
# OCaml LTS version | |
ocaml.4.14.1, | |
# ocaml-system for Fedora 39 | |
ocaml.5.0.0, | |
# ocaml-system for Archlinux | |
ocaml.5.1.0 | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setting up opam... | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
- name: Install dependencies | |
run: | | |
opam update | |
opam upgrade | |
opam install . --deps-only -t | |
- name: Build Bam | |
run: | | |
eval $(opam env) | |
dune build . | |
- name: Build documentation | |
run: | | |
eval $(opam env) | |
dune build @doc | |
- name: Upload Pages artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: _build/default/_doc/_html | |
# Deploy job | |
deploy: | |
# Add a dependency to the build job | |
needs: build_matrix | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action |