Skip to content

Commit

Permalink
Push Github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
saroupille committed Jan 22, 2024
1 parent dfa19a7 commit afce1ef
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build
run-name: Build Bamm
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: Install system dependencies
run: sudo apt install opam
- name: Initialize Opam
run: opam init -n --bare
- name: Install dependencies
run: opam install . --deps-only -t
- name: Build Spatial Shell
run: |
eval $(opam env)
dune build .

0 comments on commit afce1ef

Please sign in to comment.