Files
microdot/tools/update-micropython.sh
2021-06-04 16:57:51 +01:00

7 lines
315 B
Bash
Executable File

# this script updates the micropython binary in the /bin directory that is
# used to run unit tests under GitHub Actions builds
docker build -t micropython .
docker create -it --name dummy-micropython micropython
docker cp dummy-micropython:/usr/local/bin/micropython ../bin/micropython
docker rm dummy-micropython