2018-10-23 15:42:44 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- env: PLATFORM='linux64'
|
|
|
|
os: linux
|
|
|
|
dist: xenial
|
|
|
|
sudo: required
|
|
|
|
compiler: clang
|
|
|
|
language: cpp
|
|
|
|
cache:
|
|
|
|
ccache: true
|
|
|
|
directories:
|
|
|
|
- $HOME/.ccache
|
|
|
|
- $HOME/.cache/apt
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
script:
|
2018-10-23 15:42:44 +01:00
|
|
|
- bash scripts/ci-${PLATFORM}.sh
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
|
|
- /^(?i:continuous)/
|
2018-10-14 14:11:12 +01:00
|
|
|
|