.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.
This commit is contained in:
Florent Kermarrec 2020-04-07 10:55:58 +02:00
parent 447e8d948c
commit 926f961bf3

View file

@ -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