mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-21 14:49: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:
|
include:
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
arch: amd64
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- libtommath-dev
|
- libtommath-dev
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: clang
|
compiler: clang
|
||||||
|
arch: amd64
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- libtommath-dev
|
- libtommath-dev
|
||||||
- clang-3.9
|
- clang-3.9
|
||||||
|
- os: linux
|
||||||
|
compiler: gcc
|
||||||
|
arch: arm64
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libtommath-dev
|
||||||
- os: osx
|
- os: osx
|
||||||
image: xcode8
|
image: xcode8
|
||||||
|
addons:
|
||||||
|
homebrew:
|
||||||
|
packages:
|
||||||
|
- libtommath
|
||||||
|
- concurrencykit
|
||||||
- os: osx
|
- os: osx
|
||||||
image: xcode11.2
|
image: xcode11.2
|
||||||
|
addons:
|
||||||
|
homebrew:
|
||||||
|
packages:
|
||||||
|
- libtommath
|
||||||
|
- concurrencykit
|
||||||
|
- os: freebsd
|
||||||
|
addons:
|
||||||
|
pkg:
|
||||||
|
packages:
|
||||||
|
- sudo
|
||||||
|
- libtommath
|
||||||
|
- concurrencykit
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
before_install:
|
before_install:
|
||||||
- if [ "$(uname)" = "Darwin" ]; then
|
|
||||||
brew update;
|
|
||||||
brew install -v libtommath concurrencykit;
|
|
||||||
fi
|
|
||||||
- |
|
- |
|
||||||
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
|
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
|
||||||
cd ${HOME}/ck
|
cd ${HOME}/ck
|
||||||
|
|
Loading…
Add table
Reference in a new issue