Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
82f5332c
Commit
82f5332c
authored
Apr 29, 2016
by
Niels
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/json-patch
parents
86debab3
74544b42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
15 deletions
+64
-15
.travis.yml
.travis.yml
+64
-15
No files found.
.travis.yml
View file @
82f5332c
...
...
@@ -30,6 +30,17 @@ matrix:
packages
:
[
'
g++-5'
,
'
valgrind'
]
env
:
COMPILER=g++-5
# - os: linux
# compiler: gcc
# addons:
# apt:
# sources: ['ubuntu-toolchain-r-test']
# packages: ['g++-6', 'valgrind']
# env: COMPILER=g++-6
# Clang 3.5 is not able to compile the code,
# see https://travis-ci.org/nlohmann/json/jobs/126720186
-
os
:
linux
compiler
:
clang
addons
:
...
...
@@ -45,23 +56,61 @@ matrix:
sources
:
[
'
ubuntu-toolchain-r-test'
,
'
llvm-toolchain-precise-3.7'
]
packages
:
[
'
clang-3.7'
,
'
valgrind'
]
env
:
COMPILER=clang++-3.7
-
os
:
linux
compiler
:
clang
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
,
'
llvm-toolchain-precise-3.8'
]
packages
:
[
'
clang-3.8'
,
'
valgrind'
]
env
:
COMPILER=clang++-3.8
-
os
:
linux
compiler
:
clang
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
,
'
llvm-toolchain-precise'
]
packages
:
[
'
clang-3.9'
,
'
valgrind'
]
env
:
COMPILER=clang++-3.9
-
os
:
osx
osx_image
:
beta-xcode6.1
compiler
:
clang
env
:
COMPILER=clang
-
os
:
osx
osx_image
:
beta-xcode6.2
compiler
:
clang
env
:
COMPILER=clang
-
os
:
osx
osx_image
:
beta-xcode6.3
compiler
:
clang
env
:
COMPILER=clang
-
os
:
osx
osx_image
:
xcode6.4
compiler
:
clang
env
:
COMPILER=clang
-
os
:
osx
osx_image
:
xcode7.1
compiler
:
clang
env
:
COMPILER=clang
# - os: osx
# compiler: clang
# env: COMPILER=clang
# before_install:
# - brew update
# - brew install valgrind
-
os
:
osx
osx_image
:
xcode7.2
compiler
:
clang
env
:
COMPILER=clang
-
os
:
osx
osx_image
:
xcode7.3
compiler
:
clang
env
:
COMPILER=clang
script
:
-
make CXX=$COMPILER CXXFLAGS="-lstdc++"
-
./json_unit "*"
-
valgrind --error-exitcode=1 --leak-check=full ./json_unit
notifications
:
webhooks
:
urls
:
-
https://webhooks.gitter.im/e/f1196addb0e97a5ff396
on_success
:
change
on_failure
:
always
on_start
:
never
-
if [ `which valgrind` ]; then
valgrind --error-exitcode=1 --leak-check=full ./json_unit ;
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment