.travis.yml: fix git clone error.
This commit is contained in:
parent
47a2e5b6fd
commit
6ec7038b5b
|
@ -4,7 +4,13 @@ python: "3.6"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Get Migen / LiteX / Cores
|
# Get Migen / LiteX / Cores
|
||||||
|
- cd ~/
|
||||||
- wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
|
- wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
|
||||||
- python3 litex_setup.py init install
|
- 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
|
||||||
|
|
Loading…
Reference in New Issue