appveyor.yml 3.47 KB
Newer Older
1
2
3
4
5
6
version: '{build}'

os: Visual Studio 2015

environment:
  matrix:
Arkady Shapkin's avatar
Arkady Shapkin committed
7
8
9
10
11
12
13
    - compiler: msvc-15-seh
      generator: "Visual Studio 15 2017"
      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

    - compiler: msvc-15-seh
      generator: "Visual Studio 15 2017 Win64"
      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
Carlos O'Ryan's avatar
Carlos O'Ryan committed
14
      enabled_on_pr: yes
Arkady Shapkin's avatar
Arkady Shapkin committed
15

16
17
    - compiler: msvc-14-seh
      generator: "Visual Studio 14 2015"
Gennadiy Civil's avatar
Gennadiy Civil committed
18
      enabled_on_pr: yes
19

20
21
22
23
24
25
    - compiler: msvc-14-seh
      generator: "Visual Studio 14 2015 Win64"

    - compiler: gcc-5.3.0-posix
      generator: "MinGW Makefiles"
      cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
26
      cxx_options: "-std=gnu++11"
Gennadiy Civil's avatar
Gennadiy Civil committed
27
      enabled_on_pr: yes
28
29
30
31

    - compiler: gcc-6.3.0-posix
      generator: "MinGW Makefiles"
      cxx_path: 'C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin'
32
33
34
35
36
37
38

configuration:
  - Debug

build:
  verbosity: minimal

39
install:
40
- ps: |
41
42
    Write-Output "Compiler: $env:compiler"
    Write-Output "Generator: $env:generator"
Gennadiy Civil's avatar
Gennadiy Civil committed
43
    Write-Output "Env:Configuation: $env:configuration"
Gennadiy Civil's avatar
Gennadiy Civil committed
44
    Write-Outpit "Env: $env"
Carlos O'Ryan's avatar
Carlos O'Ryan committed
45
    if (-not (Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER)) {
46
47
      Write-Output "This is *NOT* a pull request build"
    } else {
Carlos O'Ryan's avatar
Carlos O'Ryan committed
48
49
50
51
52
      Write-Output "This is a pull request build"
      if (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes") {
        Write-Output "PR builds are *NOT* explicitly enabled"
      }
    }
53
54
55
56
57
58
59

    # git bash conflicts with MinGW makefiles
    if ($env:generator -eq "MinGW Makefiles") {
        $env:path = $env:path.replace("C:\Program Files\Git\usr\bin;", "")
        if ($env:cxx_path -ne "") {
            $env:path += ";$env:cxx_path"
        }
60
61
62
63
    }

build_script:
- ps: |
Carlos O'Ryan's avatar
Carlos O'Ryan committed
64
    # Only enable some builds for pull requests, the AppVeyor queue is too long.
Carlos O'Ryan's avatar
Carlos O'Ryan committed
65
    if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
Carlos O'Ryan's avatar
Carlos O'Ryan committed
66
67
      return
    }
68
69
70
    md _build -Force | Out-Null
    cd _build

71
72
73
74
75
    $conf = if ($env:generator -eq "MinGW Makefiles") {"-DCMAKE_BUILD_TYPE=$env:configuration"} else {"-DCMAKE_CONFIGURATION_TYPES=Debug;Release"}
    # Disable test for MinGW (gtest tests fail, gmock tests can not build)
    $gtest_build_tests = if ($env:generator -eq "MinGW Makefiles") {"-Dgtest_build_tests=OFF"} else {"-Dgtest_build_tests=ON"}
    $gmock_build_tests = if ($env:generator -eq "MinGW Makefiles") {"-Dgmock_build_tests=OFF"} else {"-Dgmock_build_tests=ON"}
    & cmake -G "$env:generator" $conf -Dgtest_build_samples=ON $gtest_build_tests $gmock_build_tests ..
76
77
78
    if ($LastExitCode -ne 0) {
        throw "Exec: $ErrorMessage"
    }
79
80
    $cmake_parallel = if ($env:generator -eq "MinGW Makefiles") {"-j2"} else  {"/m"}
    & cmake --build . --config $env:configuration -- $cmake_parallel
81
82
83
84
    if ($LastExitCode -ne 0) {
        throw "Exec: $ErrorMessage"
    }

85
86
87
88
89

skip_commits:
  files:
    - '**/*.md'

90
91
test_script:
- ps: |
Carlos O'Ryan's avatar
Carlos O'Ryan committed
92
    # Only enable some builds for pull requests, the AppVeyor queue is too long.
Carlos O'Ryan's avatar
Carlos O'Ryan committed
93
    if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
Carlos O'Ryan's avatar
Carlos O'Ryan committed
94
95
      return
    }
96
97
    if ($env:generator -eq "MinGW Makefiles") {
        return # No test available for MinGW
98
    }
Gennadiy Civil's avatar
Gennadiy Civil committed
99
    & ctest -C $env:configuration --timeout 600 --output-on-failure
100
101
102
    if ($LastExitCode -ne 0) {
        throw "Exec: $ErrorMessage"
    }
103
104
105
106
107
108

artifacts:
  - path: '_build/CMakeFiles/*.log'
    name: logs
  - path: '_build/Testing/**/*.xml'
    name: test_results