-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (41 loc) · 1.07 KB
/
ci.yml
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
name: ci
on:
push:
branches:
- main
pull_request:
jobs:
run:
name: Build
strategy:
matrix:
os:
# - ubuntu-latest
# - ubuntu-24.04
- ubuntu-22.04
# - windows-latest
# - windows-2019
# Either the waiting queue for FreeBSD is very long, or it is not available.
# - freebsd-latest
ocaml-compiler:
- 4.13.x
# - 5.1.x
- 5.2.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: Jimver/cuda-toolkit@v0.2.19
id: cuda-toolkit
with:
method: network
sub-packages: '[ "cudart", "cudart-dev", "runtime", "nvrtc", "nvrtc-dev" ]'
- uses: ocaml/setup-ocaml@v3.0.15
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
allow-prerelease-opam: true
- run: opam pin -n .
- run: opam depext -yt cudajit
- run: opam install . --deps-only --with-test --with-doc
- run: opam exec -- dune build
- run: opam exec -- dune test test_no_device