forked from edgewall/trac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
62 lines (55 loc) · 1.38 KB
/
.appveyor.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: '{branch}.{build}'
clone_depth: 20
only_commits:
files:
- .appveyor.yml
- contrib/appveyor.ps1
- setup.py
- trac/**/*.py
- trac/**/*.js
- trac/**/*.html
- trac/**/*.txt
- tracopt/**/*.py
- tracopt/**/*.js
- tracopt/**/*.html
init:
- ps: >-
# Note 1: in 'Environment variables' groups above, use:
# - SKIP_ENV=1 to completely skip a problematic environment
# - SKIP_BUILD=1 to skip the Build step
# - SKIP_TESTS=1 to skip the Tests step
# Note 2: restoration of cached directories happens *after* this step
environment:
matrix:
- PYTHONHOME: C:\Python38
TRAC_TEST_DB_URI:
- PYTHONHOME: C:\Python37-x64
TRAC_TEST_DB_URI:
- PYTHONHOME: C:\Python36-x64
TRAC_TEST_DB_URI:
- PYTHONHOME: C:\Python35-x64
TRAC_TEST_DB_URI:
- PYTHONHOME: C:\Python38-x64
TRAC_TEST_DB_URI: sqlite:test.db
- PYTHONHOME: C:\Miniconda37
TRAC_TEST_DB_URI: mysql://tracuser:password@localhost/trac?charset=utf8mb4
- PYTHONHOME: C:\Miniconda37-x64
TRAC_TEST_DB_URI: postgres://tracuser:password@localhost/trac?schema=tractest
services:
- mysql
- postgresql93
install:
- ps: >-
. .\contrib\appveyor.ps1
Trac-Install
cache: C:\projects\dependencies
build_script:
- ps: >-
. .\contrib\appveyor.ps1
Trac-Build
test_script:
- ps: >-
. .\contrib\appveyor.ps1
Trac-Tests
artifacts:
- path: 'dist\*'