Add FreeBSD and AArch64 Linux to Travis CI

Also move the Homebrew package installation on macOS to the `homebrew`
addon.
This commit is contained in:
Alex Arslan 2020-08-30 13:22:42 -07:00
parent 857c98fb87
commit 7e5e46c9cc
No known key found for this signature in database
GPG key ID: EE9A20F1240C6047

View file

@ -4,28 +4,50 @@ matrix:
include:
- os: linux
compiler: gcc
arch: amd64
addons:
apt:
packages:
- libtommath-dev
- os: linux
compiler: clang
arch: amd64
addons:
apt:
packages:
- libtommath-dev
- clang-3.9
- os: linux
compiler: gcc
arch: arm64
addons:
apt:
packages:
- libtommath-dev
- os: osx
image: xcode8
addons:
homebrew:
packages:
- libtommath
- concurrencykit
- os: osx
image: xcode11.2
addons:
homebrew:
packages:
- libtommath
- concurrencykit
- os: freebsd
addons:
pkg:
packages:
- sudo
- libtommath
- concurrencykit
notifications:
email: false
before_install:
- if [ "$(uname)" = "Darwin" ]; then
brew update;
brew install -v libtommath concurrencykit;
fi
- |
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
cd ${HOME}/ck