Compare commits

...

9 Commits

Author SHA1 Message Date
Rico Tiongson
c6cdc98257 Attempt fix travis build 2019-03-10 18:49:13 +08:00
Rico Tiongson
6f8212c4ed Attempt fix travis errors 2019-03-10 18:45:16 +08:00
Rico Tiongson
37b8538452 Attempt fix 2019-03-10 18:41:07 +08:00
Rico Tiongson
528d8513ea Merge branch 'travis-cpp' of https://github.com/Hikari9/comfortable-swipe into travis-cpp 2019-03-10 18:38:44 +08:00
Rico Tiongson
c04e1499c7 Merge branch 'travis-cpp' of https://github.com/Hikari9/comfortable-swipe into travis-cpp 2019-03-10 18:38:21 +08:00
Rico Tiongson
535e1faf70 Merge branch 'travis-cpp' of https://github.com/Hikari9/comfortable-swipe into travis-cpp 2019-03-10 18:35:27 +08:00
Rico Tiongson
f432d36fa9 Attempt fix c++ version 2019-03-10 18:34:53 +08:00
Rico Tiongson
f2329e8b7a Attempt fix c++ version 2019-03-10 18:24:54 +08:00
Rico Tiongson
115ec68ca9 Add travis config for c++ branch 2019-03-10 16:50:22 +08:00

31
.travis.yml Normal file
View File

@ -0,0 +1,31 @@
dist: xenial
sudo: required
language: c++
matrix:
include:
- env: {MATRIX_EVAL: '"CC=gcc-7 && CXX=g++-7 && alias g++=g++-7"'}
addons:
apt:
update: true
sources:
- ubuntu-toolchain-r-test
packages:
- libxdo-dev
- libinput-tools
- g++-7
- env: {MATRIX_EVAL: '"CC=gcc-8 && CXX=g++-8 && alias g++=g+++-8"'}
addons:
apt:
update: true
sources:
- ubuntu-toolchain-r-test
packages:
- libxdo-dev
- libinput-tools
- g++-8
before_install:
- eval "${MATRIX_EVAL}"
- g++ --version
install: bash install
script: bash tests/run_tests
after_script: bash uninstall