Skip to content

Commit 8cf7ea2

Browse files
authored
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)
1 parent 2c27731 commit 8cf7ea2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2.7.13+.{build}
2+
clone_depth: 5
3+
build_script:
4+
- cmd: PCbuild\build.bat -e
5+
test_script:
6+
- cmd: PCbuild\rt.bat -q -uall -rwW --slow -j2
7+
8+
# Only trigger AppVeyor if actual code or its configuration changes
9+
only_commits:
10+
files:
11+
- .github/appveyor.yml
12+
- .gitattributes
13+
- Grammar/
14+
- Include/
15+
- Lib/
16+
- Modules/
17+
- Objects/
18+
- PC/
19+
- PCBuild/
20+
- Parser/
21+
- Programs/
22+
- Python/
23+
- Tools/

0 commit comments

Comments
 (0)