aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci
diff options
context:
space:
mode:
authorGravatar Michael Soegtrop <michael.soegtrop@intel.com>2018-06-04 19:50:18 +0200
committerGravatar Michael Soegtrop <michael.soegtrop@intel.com>2018-06-04 19:50:18 +0200
commit6b415fab365a21bd8702d7ffe3c8cef8e6290c51 (patch)
tree5b72163622e5db431e55cc7dad98e9a73fe9c480 /dev/ci
parent6b447d6666aa44edbf69c69e9267b5031d7c7191 (diff)
parent345c63f5a98eb15ff0336ff853596f5b04ffbe4a (diff)
Merge PR #7596: [ci] [windows] Use newer OCaml version.
Diffstat (limited to 'dev/ci')
-rw-r--r--dev/ci/appveyor.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/dev/ci/appveyor.sh b/dev/ci/appveyor.sh
index c72705c7f..7bf9ad8c9 100644
--- a/dev/ci/appveyor.sh
+++ b/dev/ci/appveyor.sh
@@ -1,9 +1,15 @@
#!/bin/bash
+
set -e -x
+
+APPVEYOR_OPAM_SWITCH=4.06.1+mingw64c
+
wget https://github.com/fdopen/opam-repository-mingw/releases/download/0.0.0.1/opam64.tar.xz
tar -xf opam64.tar.xz
bash opam64/install.sh
-opam init -a mingw https://github.com/fdopen/opam-repository-mingw.git --comp 4.02.3+mingw64c --switch 4.02.3+mingw64c
+
+opam init -a mingw https://github.com/fdopen/opam-repository-mingw.git --comp $APPVEYOR_OPAM_SWITCH --switch $APPVEYOR_OPAM_SWITCH
eval "$(opam config env)"
-opam install -y ocamlfind camlp5 ounit
+opam install -y num ocamlfind camlp5 ounit
+
cd "$APPVEYOR_BUILD_FOLDER" && ./configure -local && make && make byte && make -C test-suite all INTERACTIVE= && make validate