mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 19:45:35 -04:00

travis-ci doesn't have Qt5 for Mac set up (or it's not immediately obvious how to access it), so let's disable that for now.
32 lines
486 B
YAML
32 lines
486 B
YAML
language: cpp
|
|
|
|
# Build matrix.
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
sudo: required
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
# Use Ubuntu 14.04 as the build environment.
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
# Build dependencies.
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- cmake
|
|
- libgmp-dev
|
|
- nettle-dev
|
|
- libudev-dev
|
|
- qtbase5-dev
|
|
|
|
# Run the build script.
|
|
script: ./travis.sh
|
|
|
|
notifications:
|
|
irc: "ircs://irc.badnik.zone:6697/#GensGS"
|