Fix syntax errors.

This commit is contained in:
Omer Katz 2015-12-30 12:18:39 +02:00
parent caa4d22d16
commit feadfad266

View File

@ -6,7 +6,13 @@ compiler:
- clang - clang
- gcc - gcc
addons: {apt: {packages: &default_packages [cmake, valgrind, doxygen]}} addons:
apt:
packages: &default_packages
- cmake
- valgrind
- doxygen
env: env:
matrix: matrix:
- CONF=debug ARCH=x86_64 - CONF=debug ARCH=x86_64
@ -26,10 +32,20 @@ env:
matrix: matrix:
include: include:
env: CONF=debug ARCH=x86 env: CONF=debug ARCH=x86
addons: {apt: {packages: [*default_packages, g++-multilib, libc6-dbg:i386]}} addons:
apt:
packages:
- *default_packages
- g++-multilib
- libc6-dbg:i386
include: include:
env: CONF=release ARCH=x86 env: CONF=release ARCH=x86
addons: {apt: {packages: [*default_packages, g++-multilib, libc6-dbg:i386]}} addons:
apt:
packages:
- *default_packages
- g++-multilib
- libc6-dbg:i386
before_script: before_script:
# hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469), # hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469),