Skip to content

Commit 5423d7d

Browse files
committed
Use micropython from new build location during build
The MicroPython project changed their CI scripts slightly which resulted in the unix port binary being output to a subdirectory (build-standard) instead of the current directory as before. This broke our build process. This commit updates our build script to search for the micropython binary in the correct subdirectory. Fixes #81
1 parent a752255 commit 5423d7d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/run_tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ jobs:
3434
git describe --always --tags
3535
make submodules
3636
make
37-
export PATH=$PATH:$PWD
38-
echo "::set-output name=bin_dir::$PWD"
37+
export OUTDIR=$PWD/build-standard
38+
export PATH=$PATH:$OUTDIR
39+
echo "::set-output name=bin_dir::$OUTDIR"
3940
test $(micropython -c 'print("test")') = "test"
4041
popd
4142

0 commit comments

Comments
 (0)