-
Notifications
You must be signed in to change notification settings - Fork 436
104 lines (87 loc) · 3.69 KB
/
Copy pathopam-ci.yml
File metadata and controls
104 lines (87 loc) · 3.69 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: opam CI
on:
pull_request:
push:
branches:
- master
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
setup:
- {ocaml-compiler: '4.08.x', os: ubuntu-latest}
- {ocaml-compiler: '4.10.x', os: ubuntu-latest}
- {ocaml-compiler: '4.12.x', os: ubuntu-latest}
- {ocaml-compiler: '4.13.x', os: ubuntu-latest}
- {ocaml-compiler: '4.14.x', os: ubuntu-latest}
- {ocaml-compiler: 'ocaml-base-compiler.5.3.0', os: ubuntu-latest}
- {ocaml-compiler: 'ocaml-base-compiler.5.4.0', os: ubuntu-latest}
- {ocaml-compiler: 'ocaml-base-compiler.5.4.0', os: macos-15-intel}
- {ocaml-compiler: 'ocaml-base-compiler.5.4.0', os: macos-latest}
# looks like setup-ocaml@v3 can only run actions on windows for
# OCaml >= 4.13
# https://github.com/ocaml/setup-ocaml/issues/822#issuecomment-2215525942
- {ocaml-compiler: '4.14.x', os: windows-latest}
- {ocaml-compiler: 'ocaml-base-compiler.5.4.0', os: windows-latest}
runs-on: ${{ matrix.setup.os }}
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Use OCaml ${{ matrix.setup.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.setup.ocaml-compiler }}
opam-pin: true
- name: Load opam cache when not Windows
if: runner.os != 'Windows'
id: opam-cache
uses: actions/cache/restore@v4
with:
path: ~/.opam
key: v0.0.2-opam-${{ matrix.setup.os }}-${{ matrix.setup.ocaml-compiler }}-${{ hashFiles('*.opam') }}
- name: Load opam cache when Windows
if: runner.os == 'Windows'
id: opam-cache-windows
uses: actions/cache/restore@v4
with:
path: _opam
key: v0.0.2-opam-${{ matrix.setup.os }}-${{ matrix.setup.ocaml-compiler }}-${{ hashFiles('**.opam') }}
- name: Pin lambda-term to fix Windows segfault
if: runner.os == 'Windows'
run: |
opam pin add lambda-term git+https://github.com/davesnx/lambda-term.git#fix-windows-console-segfault -y
- name: Install dependencies
run: opam install . --deps-only
- name: Build reason and rtop
run: opam exec -- dune build -p reason,rtop
- name: Test
run: opam exec -- dune runtest -p reason,rtop
- name: Install dune-release
if: startsWith(github.ref, 'refs/tags/') && matrix.setup.os == 'ubuntu-latest' && matrix.setup.ocaml-compiler == 'ocaml-base-compiler.5.4.0'
run: opam install dune-release -y
- name: Release to opam
uses: davesnx/dune-release-action@v0.2.14
if: startsWith(github.ref, 'refs/tags/') && matrix.setup.os == 'ubuntu-latest' && matrix.setup.ocaml-compiler == 'ocaml-base-compiler.5.4.0'
with:
packages: 'reason,rtop'
changelog: './CHANGES.md'
github-token: ${{ secrets.GH_TOKEN }}
- name: Save cache when not Windows
uses: actions/cache/save@v4
if: steps.opam-cache.outputs.cache-hit != 'true' && runner.os != 'Windows'
with:
path: ~/.opam
key: v0.0.2-opam-${{ matrix.setup.os }}-${{ matrix.setup.ocaml-compiler }}-${{ hashFiles('**.opam') }}
- name: Save cache when Windows
uses: actions/cache/save@v4
if: steps.opam-cache-windows.outputs.cache-hit != 'true' && runner.os == 'Windows'
with:
path: _opam
key: v0.0.2-opam-${{ matrix.setup.os }}-${{ matrix.setup.ocaml-compiler }}-${{ hashFiles('**.opam') }}