2013-01-21 22:37:58 +01:00
|
|
|
language: cpp
|
2014-12-05 15:54:19 +01:00
|
|
|
before_install: ./util/travis/before_install.sh
|
|
|
|
script: ./util/travis/script.sh
|
2020-03-08 21:03:44 +01:00
|
|
|
os: linux
|
|
|
|
dist: bionic
|
2017-06-20 09:39:20 +02:00
|
|
|
group: edge
|
2013-01-21 22:43:56 +01:00
|
|
|
notifications:
|
|
|
|
email: false
|
2014-09-20 00:05:14 +02:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2016-10-05 22:17:22 +02:00
|
|
|
include:
|
2018-07-05 23:04:39 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: CLANG_FORMAT=clang-format-8
|
2018-07-05 23:04:39 +02:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['clang-format-8']
|
2018-07-05 23:04:39 +02:00
|
|
|
|
2020-01-18 03:09:18 +01:00
|
|
|
- name: "Builtin Luacheck and Unit Tests"
|
2019-12-06 23:50:55 +01:00
|
|
|
language: generic
|
|
|
|
compiler: null
|
|
|
|
os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- luarocks
|
|
|
|
before_install:
|
|
|
|
- luarocks install --local luacheck
|
2020-01-18 03:09:18 +01:00
|
|
|
- luarocks install --local busted
|
2019-12-06 23:50:55 +01:00
|
|
|
script:
|
|
|
|
- $HOME/.luarocks/bin/luacheck builtin
|
2020-01-18 03:09:18 +01:00
|
|
|
- $HOME/.luarocks/bin/busted builtin
|
2019-12-06 23:50:55 +01:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: CLANG_TIDY=clang-tidy-8
|
2018-07-05 23:04:39 +02:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
|
|
|
script: ./util/travis/clangtidy.sh
|
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['clang-tidy-8']
|
2018-07-05 23:04:39 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- name: "MinGW cross-compiler (32-bit)"
|
|
|
|
env: PLATFORM=Win32
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- name: "MinGW cross-compiler (64-bit)"
|
|
|
|
env: PLATFORM=Win64
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2019-07-17 15:36:51 +02:00
|
|
|
# - env: PLATFORM=Unix
|
|
|
|
# compiler: clang
|
|
|
|
# os: osx
|
|
|
|
# osx_image: xcode8
|
2017-05-26 17:03:46 +02:00
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=gcc-6
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['gcc-6', 'g++-6']
|
|
|
|
|
2018-03-23 11:07:19 +01:00
|
|
|
- env: PLATFORM=Unix COMPILER=gcc-8
|
2017-05-26 17:03:46 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
2018-03-23 11:07:19 +01:00
|
|
|
packages: ['gcc-8', 'g++-8']
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: PLATFORM=Unix COMPILER=clang-3.9
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['clang-3.9']
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: PLATFORM=Unix COMPILER=clang-9
|
2017-03-06 20:34:02 +01:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['clang-9']
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: PLATFORM=Unix COMPILER=clang-9 FREETYPE=0
|
2018-01-12 15:36:54 +01:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['clang-9']
|
2018-01-12 15:36:54 +01:00
|
|
|
|
2020-03-08 21:03:44 +01:00
|
|
|
- env: PLATFORM=Unix COMPILER=clang-9 VALGRIND=1
|
2017-03-25 19:12:18 +01:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
2020-03-08 21:03:44 +01:00
|
|
|
packages: ['valgrind', 'clang-9']
|