Boost CI cache #1110
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
OPAM_VERSION: 2.3.0 | |
DUNE_PROFILE: release | |
permissions: | |
contents: write | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
# - windows-latest | |
ocaml-compiler: | |
- 5.1.1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Load opam cache | |
id: opam-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: | | |
${{ runner.tool_cache }}/opam | |
~/.opam | |
_opam | |
key: opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }} | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/[email protected] | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: true | |
opam-disable-sandboxing: true | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
- name: Install deps | |
run: make install | |
- name: Pin dependencies | |
run: make pin | |
- name: Build | |
run: make build | |
- name: Check formatting | |
run: make format-check | |
- name: Run tests | |
run: make test | |
- name: Generate docs | |
if: github.ref == 'refs/heads/main' | |
run: make docs | |
- name: Publish docs | |
uses: crazy-max/ghaction-github-pages@v1 | |
if: github.ref == 'refs/heads/main' | |
with: | |
target_branch: gh-pages | |
build_dir: _build/default/_doc_new/html/docs/ | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Run benchmarks | |
run: make bench | |
- name: Save cache | |
uses: actions/cache/save@v4 | |
if: steps.opam-cache.outputs.cache-hit != 'true' | |
with: | |
path: | | |
${{ runner.tool_cache }}/opam | |
~/.opam | |
_opam | |
key: opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }} | |