aboutsummaryrefslogtreecommitdiff
path: root/windows/.appveyor.yml
blob: 84060a1162a0f95025fd0645b40fdd20e3852354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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