Skip to content

Commit 50e1b97

Browse files
authored
Merge pull request #82 from wnienhaus/fix_build_location
Use micropython from new build location during build
2 parents a752255 + 5423d7d commit 50e1b97

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: .github/workflows/run_tests.yaml

+3-2
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)