Skip to content

Commit

Permalink
Add FreeBSD and AArch64 Linux to Travis CI
Browse files Browse the repository at this point in the history
Also move the Homebrew package installation on macOS to the `homebrew`
addon.
  • Loading branch information
ararslan committed Aug 30, 2020
1 parent 857c98f commit 7e5e46c
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e5e46c

Please sign in to comment.