Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to OCaml 5.0 implementation of effects #7

Merged
merged 21 commits into from Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/prs.yml
@@ -0,0 +1,16 @@
name: Build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run docker build
run: docker build .
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

17 changes: 17 additions & 0 deletions Dockerfile
@@ -0,0 +1,17 @@
FROM ocaml/opam:ubuntu-lts-ocaml-5.0

RUN opam install ocamlbuild ocamlfind

COPY sources/Makefile ./sources/
COPY sources/*.ml ./sources/

COPY sources/solved/Makefile ./sources/solved/
COPY sources/solved/*.ml ./sources/solved/

WORKDIR sources

RUN sudo bash -c "eval $(opam env) make all"

WORKDIR solved

RUN sudo bash -c "eval $(opam env) make all"