Skip to content

Commit 23d9b27

Browse files
committed
[travis] Fix issues
1 parent eb9cb14 commit 23d9b27

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ install:
1313
# clone micropython, belyalov's fork of micropython-lib
1414
- git clone --recurse-submodules https://github.com/micropython/micropython.git
1515
- git clone https://github.com/belyalov/micropython-lib.git
16-
# use micropython release 1.9.4
17-
- git checkout v1.9.4
1816
# make symlinks to required modules
1917
- export MDST=~/.micropython/lib/
2018
- mkdir -p $MDST
2119
- ln -s `pwd`/micropython-lib/unittest/unittest.py $MDST
2220
- ln -s ../../uasyncio.core/uasyncio/core.py `pwd`/micropython-lib/uasyncio/uasyncio
2321
- ln -s `pwd`/micropython-lib/uasyncio/uasyncio $MDST/uasyncio
2422
- ln -s `pwd`/tinyweb $MDST/tinyweb
25-
# compile/install micropython
26-
- sudo make -C micropython/ports/unix axtls install
23+
# compile/install micropython. Use release v1.9.4
24+
- cd micropython
25+
- git checkout v1.9.4
26+
- sudo make -C ports/unix axtls install
27+
- cd ..
2728

2829
script:
2930
# Run style checks

0 commit comments

Comments
 (0)