Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c936f9

Browse files
committed
windows: Publish executables built by Appveyor.
This makes the micropython and mpy-cross executables, both from msvc and mingw ports, avaiable for download.
1 parent 2d62939 commit 2c936f9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

ports/windows/.appveyor.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,15 @@ build_script:
7373
BuildAndTestMsvc "Release" "x64"
7474
BuildAndTestMingw "MINGW32"
7575
BuildAndTestMingw "MINGW64"
76+
77+
# Note this relies on building the mingw version after the msvc version,
78+
# so the former replaces the .exe files built by the latter and we pick those up here.
79+
artifacts:
80+
- path: ports/windows/build/Release*/micropython.exe
81+
name: micropython-msvc
82+
- path: mpy-cross/build/Release*/mpy-cross.exe
83+
name: mpy-cross-msvc
84+
- path: ports/windows/micropython.exe
85+
name: micropython-mingw
86+
- path: mpy-cross/mpy-cross.exe
87+
name: mpy-cross-mingw

0 commit comments

Comments
 (0)