From: Tim 'mithro' Ansell Date: Mon, 6 Apr 2020 18:38:23 +0000 (-0700) Subject: Run `litex_setup.py` outside the git clone directory. X-Git-Tag: 24jan2021_ls180~498^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d781bf208844f7b335578f899334d36628bd208f;p=litex.git Run `litex_setup.py` outside the git clone directory. Otherwise it tries to overwrite the litex directory by cloning LiteX into it. --- 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