f18635a3d1956e6a64c831007dbd48cbe777e673
[iec.git] / src / type3_AndroidCloud / anbox-master / external / cpu_features / appveyor.yml
1 version: '{build}'
2 shallow_clone: true
3
4 platform: x64
5
6 environment:
7   matrix:
8   - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
9     CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
10   - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
11     CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
12
13 matrix:
14   fast_finish: true
15
16 before_build:
17   - cmake --version
18   - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build -G "%CMAKE_GENERATOR%"
19
20 build_script:
21   - cmake --build cmake_build --config Debug --target ALL_BUILD
22
23 test_script:
24   - cmake --build cmake_build --config Debug --target RUN_TESTS