From c592b0e0f8520f26927c85124e8a1e59f7a23c09 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 2 Apr 2018 07:58:38 -0500 Subject: [PATCH] ports/windows: Remove appveyor.yml .. this allows developers who want to work with both micropython and circuitpython to enable appveyor on their fork, but not get errors when pushing circuitpython changes. In the appveyor configuration for your fork, simply enable the checkbox "Skip branches without appveyor.yml". --- ports/windows/.appveyor.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 ports/windows/.appveyor.yml diff --git a/ports/windows/.appveyor.yml b/ports/windows/.appveyor.yml deleted file mode 100644 index 9435ce6e67..0000000000 --- a/ports/windows/.appveyor.yml +++ /dev/null @@ -1,32 +0,0 @@ -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: ports/windows/micropython.vcxproj - verbosity: normal - -test_script: -- cmd: >- - cd tests - - %MICROPY_CPYTHON3% run-tests --auto-jobs - -skip_tags: true - -deploy: off - -nuget: - disable_publish_on_pr: true