35 lines
696 B
YAML
35 lines
696 B
YAML
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
env: ARCH=x86_64
|
|
compiler: gcc
|
|
sudo: require
|
|
dist: trusty
|
|
- os: linux
|
|
env: ARCH=i386
|
|
compiler: gcc
|
|
sudo: require
|
|
dist: trusty
|
|
- os: osx
|
|
# Can't build on Windows - affected by https://travis-ci.community/t/current-known-issues-please-read-this-before-posting-a-new-topic/264/10
|
|
# - os: windows
|
|
|
|
before_install:
|
|
- source ./.travis/before_install.sh
|
|
|
|
install:
|
|
- source ./.travis/install.sh
|
|
|
|
script:
|
|
- source ./.travis/script.sh
|
|
|
|
after_success:
|
|
- source ./.travis/after_success.sh
|
|
|
|
branches:
|
|
except:
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
- /^(?i:continuous)/
|