We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bff7af3 commit 95f6e09Copy full SHA for 95f6e09
2 files changed
circle.yml
@@ -0,0 +1,11 @@
1
+dependencies:
2
+ override:
3
+ - sudo add-apt-repository -y ppa:avsm/ppa
4
+ - sudo apt-get install -y ocaml ocaml-native-compilers opam
5
+ - opam init --auto-setup --dot-profile=~/.bashrc # Modify dotfiles
6
+
7
+test:
8
9
+ - ./test-with-version.sh 4.02.3
10
+ - ./test-with-version.sh 4.03.0
11
+ - ./test-with-version.sh 4.04.0
test-with-version.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+set -e
+export OCAML_VERSION="${1}"
+make clean
+opam switch "${OCAML_VERSION}"
+eval `opam config env`
+opam update
+opam pin add -y ReasonProject .
12
+make
13
+./Test.native
14
+git diff --exit-code
0 commit comments