From 926f961bf3b0d6a130c6c119f85fdfbad4c6b118 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 7 Apr 2020 10:55:58 +0200 Subject: [PATCH] .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. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2