mirror of
https://github.com/google/cpu_features.git
synced 2025-04-30 16:33:35 +02:00
17 lines
293 B
YAML
17 lines
293 B
YAML
sudo: required
|
|
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
script:
|
|
- cmake --version
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build
|
|
- cmake --build cmake_build --target all
|
|
- CTEST_OUTPUT_ON_FAILURE=1 cmake --build cmake_build --target test
|