CI: avoids broken packages

Otherwise:

```
The actions to process have cyclic dependencies:
  - install bos.0.1.4 -> install base64.2.1.2 -> install js_of_ocaml.2.8.3 -> install mtime.0.8.3 -> install bos.0.1.4
  - install bos.0.1.4 -> install base64.2.1.2 -> install js_of_ocaml.2.8.3 -> install logs.0.6.2 -> install bos.0.1.4
```
This commit is contained in:
Grégoire Henry 2016-12-09 11:19:24 +01:00
parent 37124411df
commit 5c428a5ea3
2 changed files with 5 additions and 3 deletions

View File

@ -62,5 +62,7 @@ if ! [ -z "$depext" ]; then
fi
if ! [ -z "$install" ]; then
opam install --build-test tezos-deps
opam install tezos-deps
## This seems broken in the current opam-repo (2016-12-09)
## opam install --build-test tezos-deps
fi

View File

@ -31,6 +31,6 @@ depends: [
"tyxml"
"js_of_ocaml"
"sodium" {>= "0.3.0"}
"kaputt" { test }
"bisect_ppx" { test }
"kaputt" # { test }
"bisect_ppx" # { test }
]