Skip to content

Commit

Permalink
Travis: move coverage report generation to 4.04
Browse files Browse the repository at this point in the history
Also use the final 4.04 release instead of the beta.
  • Loading branch information
aantron committed Nov 8, 2016
1 parent 3043caa commit 5ac7833
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,18 @@ matrix:
- os: linux
env: OCAML_VERSION=4.02
- os: linux
env: OCAML_VERSION=4.03 COVERALLS=yes
env: OCAML_VERSION=4.03
- os: linux
env: OCAML_VERSION=4.03 BYTECODE_ONLY=yes
env: OCAML_VERSION=4.04 COVERALLS=yes
- os: linux
env: OCAML_VERSION=4.04
env: OCAML_VERSION=4.04 BYTECODE_ONLY=yes
- os: osx
env: OCAML_VERSION=4.02
- os: osx
env: OCAML_VERSION=4.03
- os: osx
env: OCAML_VERSION=4.04

allow_failures:
- env: OCAML_VERSION=4.04

fast_finish: true

script: bash -e ./src/travis_ci_test.sh
4 changes: 2 additions & 2 deletions src/travis_ci_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ travis_install_on_linux () {
4.03)
opam init -y --compiler=4.03.0 ;;
4.04)
opam init -y --compiler=4.04.0+beta2 ;;
opam init -y --compiler=4.04.0 ;;
*)
echo Unknown $OCAML_VERSION
exit 1 ;;
Expand All @@ -34,7 +34,7 @@ travis_install_on_osx () {
4.03)
opam init -y ;;
4.04)
opam init -y --compiler=4.04.0+beta2 ;;
opam init -y --compiler=4.04.0 ;;
*)
echo Unknown $OCAML_VERSION
exit 1 ;;
Expand Down

0 comments on commit 5ac7833

Please sign in to comment.