Skip to content

Commit da199e4

Browse files
stinosdpgeorge
authored andcommitted
windows: Add Appveyor CI builds for msvc port.
Appveyor is like Travis, but for Windows builds. The appveyor.yml configuration will build the msvc port in all configuration/platform conbinations, and run the tests for each of those.
1 parent fe03e7b commit da199e4

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

windows/.appveyor.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
environment:
2+
# Python version used
3+
MICROPY_CPYTHON3: c:/python34/python.exe
4+
5+
init:
6+
# Set build version number to commit to be travis-like
7+
- ps: Update-AppveyorBuild -Version $env:appveyor_repo_commit.substring(0,8)
8+
9+
configuration:
10+
- Debug
11+
- Release
12+
13+
platform:
14+
- x86
15+
- x64
16+
17+
build:
18+
project: windows/micropython.vcxproj
19+
verbosity: normal
20+
21+
test_script:
22+
- cmd: >-
23+
cd tests
24+
25+
%MICROPY_CPYTHON3% run-tests
26+
27+
skip_tags: true
28+
29+
deploy: off
30+
31+
nuget:
32+
disable_publish_on_pr: true

0 commit comments

Comments
 (0)