1
0
mirror of https://github.com/google/cpu_features.git synced 2025-04-30 08:23:37 +02:00
cpu_features/.travis.yml
Guillaume Chatelet 5f5cde5797 Add ninja build.
2019-01-17 14:19:34 +01:00

103 lines
2.3 KiB
YAML

language: c
sudo: false
cache:
directories:
- $HOME/cpu_features_archives
addons:
apt:
packages:
- ninja-build
matrix:
include:
- os: linux
compiler: gcc
env:
TOOLCHAIN=NATIVE
TARGET=x86_64-linux-gnu
CMAKE_GENERATOR=Ninja
- os: linux
compiler: clang
env:
TOOLCHAIN=NATIVE
TARGET=x86_64-linux-gnu
- os: osx
compiler: gcc
env:
TOOLCHAIN=NATIVE
TARGET=x86_64-osx
- os: osx
compiler: clang
env:
TOOLCHAIN=NATIVE
TARGET=x86_64-osx
- os: windows
env:
TOOLCHAIN=NATIVE
TARGET=x86_64-windows
CMAKE_GENERATOR="Visual Studio 15 2017 Win64"
- os: linux-ppc64le
compiler: gcc
env:
TOOLCHAIN=NATIVE
TARGET=ppc64le-linux-gnu
- os: linux-ppc64le
compiler: clang
env:
TOOLCHAIN=NATIVE
TARGET=ppc64le-linux-gnu
# Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=aarch64-linux-gnu
QEMU_ARCH=aarch64
# Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=arm-linux-gnueabihf
QEMU_ARCH=arm
# Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=armv8l-linux-gnueabihf
QEMU_ARCH=arm
# Toolchains for little-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=arm-linux-gnueabi
QEMU_ARCH=arm
# Toolchains for big-endian, 64-bit ARMv8 for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=aarch64_be-linux-gnu
QEMU_ARCH=DISABLED
# Toolchains for big-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=armeb-linux-gnueabihf
QEMU_ARCH=DISABLED
# Toolchains for big-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
- os: linux
env:
TOOLCHAIN=LINARO
TARGET=armeb-linux-gnueabi
QEMU_ARCH=DISABLED
- os: linux
env:
TOOLCHAIN=CODESCAPE
TARGET=mips-mti-linux-gnu
QEMU_ARCH=DISABLED
script:
- cmake --version
- bash -e -x ./scripts/run_integration.sh