~vcs-imports/trac/trunk

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
version: '{branch}.{build}'
clone_depth: 20
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:
  - SVN_BRANCH: trunk
    PYTHONHOME: C:\Python27
    TRAC_TEST_DB_URI:
  - SVN_BRANCH: trunk
    PYTHONHOME: C:\Python27-x64
    TRAC_TEST_DB_URI: sqlite:test.db
  - SVN_BRANCH: trunk
    PYTHONHOME: C:\Miniconda
    TRAC_TEST_DB_URI: mysql://tracuser:password@localhost/trac?charset=utf8mb4
  - SVN_BRANCH: trunk
    PYTHONHOME: C:\Miniconda-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\*'