.travis.yml: fix git clone error.

This commit is contained in:
Florent Kermarrec 2020-04-07 12:07:27 +02:00
parent 47a2e5b6fd
commit 6ec7038b5b
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