File: make-test.yml

package info (click to toggle)
herdtools7 7.58-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,732 kB
  • sloc: ml: 128,583; ansic: 3,827; makefile: 670; python: 407; sh: 212; awk: 14
file content (60 lines) | stat: -rw-r--r-- 1,506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: build & make test

on:
  pull_request:
  # push:
  workflow_dispatch:
  schedule:
    # Prime the caches every Monday
    - cron: 0 1 * * MON

permissions: read-all

# Copy-pasted from https://stackoverflow.com/questions/66335225/how-to-cancel-previous-runs-in-the-pr-when-you-push-new-commitsupdate-the-curre
concurrency:
  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
  cancel-in-progress: true

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
        cfg:
          - ocaml-version: "4.08.1"
            with-fmt: false
            job-name: "OCaml v4.08"
          - ocaml-version: "5.2"
            with-fmt: true
            job-name: "OCaml v5.2, with formatting check"

    name: Make test on ${{ matrix.cfg.job-name }}

    runs-on: ${{ matrix.os }}

    env:
      DUNE_CACHE: 'enabled-except-user-rules'

    steps:
      - name: Checkout tree
        uses: actions/checkout@v4

      - name: Set-up OCaml ${{ matrix.cfg.ocaml-version }}
        uses: ocaml/setup-ocaml@v3
        with:
          ocaml-compiler: ${{ matrix.cfg.ocaml-version }}
          dune-cache: true

      - run: opam install . --deps-only --with-test

      - run: opam exec -- make build DUNE_PROFILE=dev

      - run: opam exec -- make test DUNE_PROFILE=dev

      - run: opam install ocamlformat.0.26.2
        if: ${{ matrix.cfg.with-fmt }}

      - run: opam exec -- dune fmt
        if: ${{ matrix.cfg.with-fmt }}