12 lines
408 B
Bash
Executable File
12 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
# this script updates the micropython binary in the /bin directory that is
|
|
# used to run unit tests under GitHub Actions builds
|
|
|
|
DOCKER=${DOCKER:-docker}
|
|
VERSION=${1:-master}
|
|
|
|
$DOCKER build --build-arg VERSION=$VERSION -t micropython .
|
|
$DOCKER create -it --name dummy-micropython micropython
|
|
$DOCKER cp dummy-micropython:/usr/local/bin/micropython ../bin/micropython
|
|
$DOCKER rm dummy-micropython
|