From 8cf7ea22fcee78478c4eaf141977ede29c81cbc1 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 3 May 2017 18:42:42 +0200 Subject: [PATCH] Add Appveyor to Python 2.7 branch (#1434) * Add Appveyor to Python 2.7 branch * Adapt AppVeyor config for Python 2 * Replace -j0 with -j2: -j0 is ignored on Python 2 * Replace --slowest with --slow * Remove --timeout option (it was introduced in Python 3) --- .github/appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/appveyor.yml diff --git a/.github/appveyor.yml b/.github/appveyor.yml new file mode 100644 index 000000000000..f42cdc92737f --- /dev/null +++ b/.github/appveyor.yml @@ -0,0 +1,23 @@ +version: 2.7.13+.{build} +clone_depth: 5 +build_script: +- cmd: PCbuild\build.bat -e +test_script: +- cmd: PCbuild\rt.bat -q -uall -rwW --slow -j2 + +# Only trigger AppVeyor if actual code or its configuration changes +only_commits: + files: + - .github/appveyor.yml + - .gitattributes + - Grammar/ + - Include/ + - Lib/ + - Modules/ + - Objects/ + - PC/ + - PCBuild/ + - Parser/ + - Programs/ + - Python/ + - Tools/ -- 2.47.3