mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
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:
parent
857c98fb87
commit
7e5e46c9cc
1 changed files with 26 additions and 4 deletions
30
.travis.yml
30
.travis.yml
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue