.travis.yml: fix git clone error.

This commit is contained in:
Florent Kermarrec 2020-04-07 12:20:26 +02:00
parent 47819e803b
commit 5701c526fd
1 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,13 @@ 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 version being tested
- cd $TRAVIS_BUILD_DIR
- python3 setup.py install
script: python setup.py test
script:
- cd $TRAVIS_BUILD_DIR
- python setup.py test