From da199e4407f38c170179c33aef862fd5109145e2 Mon Sep 17 00:00:00 2001 From: stijn Date: Thu, 17 Dec 2015 10:24:33 +0100 Subject: [PATCH] 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. --- windows/.appveyor.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 windows/.appveyor.yml diff --git a/windows/.appveyor.yml b/windows/.appveyor.yml new file mode 100644 index 0000000000..84060a1162 --- /dev/null +++ b/windows/.appveyor.yml @@ -0,0 +1,32 @@ +environment: + # Python version used + MICROPY_CPYTHON3: c:/python34/python.exe + +init: + # Set build version number to commit to be travis-like +- ps: Update-AppveyorBuild -Version $env:appveyor_repo_commit.substring(0,8) + +configuration: +- Debug +- Release + +platform: +- x86 +- x64 + +build: + project: windows/micropython.vcxproj + verbosity: normal + +test_script: +- cmd: >- + cd tests + + %MICROPY_CPYTHON3% run-tests + +skip_tags: true + +deploy: off + +nuget: + disable_publish_on_pr: true