From 5c428a5ea35f0f67215b6642e53646797135a7d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Fri, 9 Dec 2016 11:19:24 +0100 Subject: [PATCH] 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 ``` --- scripts/install_build_deps.sh | 4 +++- src/tezos-deps.opam | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/install_build_deps.sh b/scripts/install_build_deps.sh index 65aaa3b27..220ac8db6 100755 --- a/scripts/install_build_deps.sh +++ b/scripts/install_build_deps.sh @@ -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 diff --git a/src/tezos-deps.opam b/src/tezos-deps.opam index cd232cf8b..86171794c 100644 --- a/src/tezos-deps.opam +++ b/src/tezos-deps.opam @@ -31,6 +31,6 @@ depends: [ "tyxml" "js_of_ocaml" "sodium" {>= "0.3.0"} - "kaputt" { test } - "bisect_ppx" { test } + "kaputt" # { test } + "bisect_ppx" # { test } ]