From 02e2366015635c68836579d03a24d1ec27b6aeef Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 19 Oct 2015 23:02:37 +0800 Subject: [PATCH] travis: workaround for conda noarch bug --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9d1ed6766..815d9f273 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,9 @@ install: - "sudo apt-get install verilator" - "verilator --version; true" # Build and install Migen conda package + # workaround for https://github.com/conda/conda-build/issues/466 + - "mkdir -p /home/travis/miniconda/conda-bld/linux-64" + - "conda index /home/travis/miniconda/conda-bld/linux-64" - "conda build --python 3.5 conda/migen" - "conda install migen --use-local"