isa-l/.travis.yml
Jun He c680d3aba7 Add arm64 to Travis matrix
Enable new arm64 architecture in TravisCI, add tests for
following compilers:
gcc: v5.4.0
clang: v3.8.0

Change-Id: Id0b2f2231fabcbeff7061f85050db99df12c9a67
Signed-off-by: Jun He <jun.he@arm.com>
2019-10-24 10:09:19 +08:00

106 lines
2.5 KiB
YAML

language: c
sudo: required
matrix:
include:
### OS X
- os: osx
env: C_COMPILER=clang
### linux gcc and format check
- dist: xenial
addons:
apt:
packages:
- nasm
install:
# Install newer indent to check formatting
- sudo apt-get install texinfo
- wget http://archive.ubuntu.com/ubuntu/pool/main/i/indent/indent_2.2.12.orig.tar.xz -O /tmp/indent.tar.xz
- tar -xJf /tmp/indent.tar.xz -C /tmp/
- pushd /tmp/indent-2.2.12 && ./configure --prefix=/usr && make && sudo make install && popd
env: C_COMPILER=gcc
### linux clang
- dist: xenial
addons:
apt:
packages:
- nasm
env: C_COMPILER=clang
### linux newer clang
- dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
packages:
- clang-4.0
env: C_COMPILER=clang-4.0
### linux older gcc
- dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.7
env: C_COMPILER=gcc-4.7
### linux newer gcc
- dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: C_COMPILER=gcc-6
### arm64: clang-3.8
- os: linux
dist: xenial
arch: arm64
env: C_COMPILER=clang
### arm64: gcc-5.4
- os: linux
dist: xenial
arch: arm64
env: C_COMPILER=gcc
### arm64: gcc-5.4
- os: linux
dist: xenial
arch: arm64
env: TEST_TYPE=ext
### linux extended tests
- dist: xenial
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- binutils-mingw-w64-x86-64
- gcc-mingw-w64-x86-64
- wine
- nasm
env: TEST_TYPE=ext
before_install:
- if [ -n "${C_COMPILER}" ]; then export CC="${C_COMPILER}"; fi
- if [ -n "${AS_ASSEMBL}" ]; then export AS="${AS_ASSEMBL}"; fi
before_script:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -q update; fi
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install yasm; fi
- if [ $TRAVIS_OS_NAME = osx ]; then brew install yasm; fi
script:
- if [ -n "${CC}" ]; then $CC --version; fi
- if [ -n "${AS}" ]; then $AS --version || echo No version; fi
- ./tools/test_autorun.sh "${TEST_TYPE}"