Commit feadfad2 authored by Omer Katz's avatar Omer Katz

Fix syntax errors.

parent caa4d22d
...@@ -6,7 +6,13 @@ compiler: ...@@ -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: ...@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment