From: Florent Kermarrec Date: Tue, 7 Apr 2020 08:55:58 +0000 (+0200) Subject: .travis.yml: revert full url for litex_setup.py. X-Git-Tag: 24jan2021_ls180~496 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=926f961bf3b0d6a130c6c119f85fdfbad4c6b118;p=litex.git .travis.yml: revert full url for litex_setup.py. We want to have an almost identical .travis.yml between LiteX and the Cores. Using $TRAVIS_BUILD_DIR works for LiteX but will not work for the cores. --- diff --git a/.travis.yml b/.travis.yml index 9ff86a27..aeb85623 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ python: "3.6" install: # Get Migen / LiteX / Cores - cd ~/ - - cp $TRAVIS_BUILD_DIR/litex_setup.py . + - wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py - python3 litex_setup.py init install - # Install the LiteX version being tested. + # Install the LiteX version being tested - cd $TRAVIS_BUILD_DIR - python3 setup.py install