Add default constructor for MaybeAlign
[llvm-complete.git] / utils / benchmark / appveyor.yml
blobe99c6e77f006e51782b7b8c59d2d3e579369acc0
1 version: '{build}'
3 image: Visual Studio 2017
5 configuration:
6   - Debug
7   - Release
9 environment:
10   matrix:
11     - compiler: msvc-15-seh
12       generator: "Visual Studio 15 2017"
14     - compiler: msvc-15-seh
15       generator: "Visual Studio 15 2017 Win64"
17     - compiler: msvc-14-seh
18       generator: "Visual Studio 14 2015"
20     - compiler: msvc-14-seh
21       generator: "Visual Studio 14 2015 Win64"
23     - compiler: msvc-12-seh
24       generator: "Visual Studio 12 2013"
26     - compiler: msvc-12-seh
27       generator: "Visual Studio 12 2013 Win64"
29     - compiler: gcc-5.3.0-posix
30       generator: "MinGW Makefiles"
31       cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
32       APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
34 matrix:
35   fast_finish: true
37 install:
38   # git bash conflicts with MinGW makefiles
39   - if "%generator%"=="MinGW Makefiles" (set "PATH=%PATH:C:\Program Files\Git\usr\bin;=%")
40   - if not "%cxx_path%"=="" (set "PATH=%PATH%;%cxx_path%")
42 build_script:
43   - md _build -Force
44   - cd _build
45   - echo %configuration%
46   - cmake -G "%generator%" "-DCMAKE_BUILD_TYPE=%configuration%" -DBENCHMARK_DOWNLOAD_DEPENDENCIES=ON ..
47   - cmake --build . --config %configuration%
49 test_script:
50   - ctest -c %configuration% --timeout 300 --output-on-failure
52 artifacts:
53   - path: '_build/CMakeFiles/*.log'
54     name: logs
55   - path: '_build/Testing/**/*.xml'
56     name: test_results