File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff 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
2829script :
2930 # Run style checks
You can’t perform that action at this time.
0 commit comments