mirror of
https://github.com/google/cpu_features.git
synced 2025-07-02 05:33:17 +02:00
Add appveyor configuration.
This commit is contained in:
1
BUILD
1
BUILD
@ -28,6 +28,7 @@ filegroup(
|
|||||||
"OWNERS",
|
"OWNERS",
|
||||||
"README.md",
|
"README.md",
|
||||||
"WORKSPACE",
|
"WORKSPACE",
|
||||||
|
"appveyor.yml",
|
||||||
"include/cpu_features_macros.h",
|
"include/cpu_features_macros.h",
|
||||||
"include/cpuinfo_aarch64.h",
|
"include/cpuinfo_aarch64.h",
|
||||||
"include/cpuinfo_arm.h",
|
"include/cpuinfo_arm.h",
|
||||||
|
24
appveyor.yml
Normal file
24
appveyor.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
version: '{build}'
|
||||||
|
shallow_clone: true
|
||||||
|
|
||||||
|
platform: x64
|
||||||
|
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
|
CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
|
before_build:
|
||||||
|
- cmake --version
|
||||||
|
- cmake -H. -Bcmake_build -G "%CMAKE_GENERATOR%"
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
- cmake --build cmake_build --config Release --target ALL_BUILD
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
- cmake --build cmake_build --config Release --target RUN_TESTS
|
Reference in New Issue
Block a user