mirror of
https://github.com/google/cpu_features.git
synced 2025-05-01 00:33:36 +02:00
36 lines
651 B
YAML
36 lines
651 B
YAML
language: c
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/qemu
|
|
- $HOME/toolchains
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
- os: linux
|
|
compiler: clang
|
|
- os: osx
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
- os: linux
|
|
env:
|
|
CROSS_COMPILE=1
|
|
TOOLCHAIN_NAME=gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf
|
|
TARGET=arm-linux-gnueabihf
|
|
QEMU_ARCH=arm
|
|
- os: linux
|
|
env:
|
|
CROSS_COMPILE=1
|
|
TOOLCHAIN_NAME=gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu
|
|
TARGET=aarch64-linux-gnu
|
|
QEMU_ARCH=aarch64
|
|
|
|
script:
|
|
- cmake --version
|
|
- bash -e -x ./scripts/run_integration.sh
|