From d781bf208844f7b335578f899334d36628bd208f Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 6 Apr 2020 11:38:23 -0700 Subject: [PATCH] Run `litex_setup.py` outside the git clone directory. Otherwise it tries to overwrite the litex directory by cloning LiteX into it. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index eeddc7c7..c892607a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,12 @@ python: "3.6" install: # Get Migen / LiteX / Cores + - cd ~/ - wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py - python3 litex_setup.py init install + # Install the LiteX version being tested. + - cd $TRAVIS_BUILD_DIR + - python3 setup.py install before_script: # Get RISC-V toolchain -- 2.30.2