From b983e3419fb34b4382cae427ac9d9e738834c624 Mon Sep 17 00:00:00 2001 From: Akshay Narayan Date: Tue, 6 Nov 2018 10:53:21 -0500 Subject: [PATCH] travis: Don't build python bindings in travis Due to https://github.com/rust-lang/rust/issues/55380, travis cannot compile pyportus. These failures mask other real errors. Could not pin travis builds to rust nightly-2018-10-23 until ICE is resolved (or pyo3 0.5.0 is released, which will resolve this). Disable travis builds of python bindings temporarily. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e18ca9c..83c6e33 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ all: build test-portus test-ipc libccp-integration lint -travis: build test-portus libccp-integration bindings +travis: build test-portus libccp-integration OS := $(shell uname) CLIPPY := $(shell rustup component list --toolchain nightly | grep "clippy" | grep -c "installed")