From 5854e29975f90bf31abd58a67267dbab88ea9025 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. Therefore, temporarily disable travis builds of the python bindings until either: 1. we can specify rust nightly version in travis 2. ICE goes away. --- 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")