Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
3a4835e0
Commit
3a4835e0
authored
Mar 13, 2015
by
Milo Yip
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #258 from pah/fixes/ci-debug-noperftest
Skip running perftest on CI debug builds (Appveyer; Travis)
parents
9279e9ec
2b565469
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
17 deletions
+43
-17
.gitignore
.gitignore
+2
-4
.travis.yml
.travis.yml
+13
-9
CMakeLists.txt
CMakeLists.txt
+7
-2
appveyor.yml
appveyor.yml
+1
-1
CMakeLists.txt
example/CMakeLists.txt
+8
-0
CMakeLists.txt
test/unittest/CMakeLists.txt
+12
-1
No files found.
.gitignore
View file @
3a4835e0
...
...
@@ -2,10 +2,10 @@
!/bin/data
!/bin/encodings
!/bin/jsonchecker
/build
/doc/html
/doc/doxygen_*.db
/thirdparty/lib
/intermediate
*.a
# Temporary files created during CMake build
CMakeCache.txt
...
...
@@ -20,4 +20,3 @@ Testing
install_manifest.txt
Doxyfile
DartConfiguration.tcl
/build/*
\ No newline at end of file
.travis.yml
View file @
3a4835e0
...
...
@@ -6,35 +6,39 @@ compiler:
env
:
matrix
:
-
CONF=debug
ARCH=x86_64 ARCH_FLAGS=""
-
CONF=release ARCH=x86_64
ARCH_FLAGS=""
-
CONF=debug
ARCH=x86 ARCH_FLAGS="-m32"
-
CONF=release ARCH=x86
ARCH_FLAGS="-m32"
-
CONF=debug
ARCH=x86_64
-
CONF=release ARCH=x86_64
-
CONF=debug
ARCH=x86
-
CONF=release ARCH=x86
global
:
-
ARCH_FLAGS_x86='-m32'
-
ARCH_FLAGS_x86_64=''
-
GITHUB_REPO='miloyip/rapidjson'
-
secure
:
"
HrsaCb+N66EG1HR+LWH1u51SjaJyRwJEDzqJGYMB7LJ/bfqb9mWKF1fLvZGk46W5t7TVaXRDD5KHFx9DPWvKn4gRUVkwTHEy262ah5ORh8M6n/6VVVajeV/AYt2C0sswdkDBDO4Xq+xy5gdw3G8s1A4Inbm73pUh+6vx+7ltBbk="
before_install
:
-
sudo apt-get update -qq
-
sudo apt-get install -qq cmake doxygen valgrind
-
if [ "$ARCH" = "x86" ]; then sudo apt-get install -qq g++-multilib libc6-dbg:i386; fi
install
:
true
before_script
:
# hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469),
# exposed by merging PR#163 (using -march=native)
-
sed -i 's/march=native/msse4.2/' CMakeLists.txt
-
mkdir build
-
>
eval "ARCH_FLAGS=\${ARCH_FLAGS_${ARCH}}" ;
(cd build && cmake
-DRAPIDJSON_HAS_STDSTRING=ON
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_BUILD_TYPE=$CONF
-DCMAKE_C_FLAGS="$ARCH_FLAGS" ..)
# hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469),
# exposed by merging PR#163 (using -march=native)
# - (cd build/gmake && sed -i 's/march=native/msse4.2/' *.make)
-DCMAKE_CXX_FLAGS="$ARCH_FLAGS" ..)
script
:
-
cd build
-
make tests
-
make examples
-
ctest -V
-
ctest -V
`[ "$CONF" = "release" ] || echo "-E perftest"`
-
make travis_doc
CMakeLists.txt
View file @
3a4835e0
...
...
@@ -23,6 +23,13 @@ if(RAPIDJSON_HAS_STDSTRING)
add_definitions
(
-DRAPIDJSON_HAS_STDSTRING
)
endif
()
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-march=native -Wall -Wextra"
)
elseif
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-march=native -Wall -Wextra"
)
elseif
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"MSVC"
)
add_definitions
(
-D_CRT_SECURE_NO_WARNINGS=1
)
endif
()
#add extra search paths for libraries and includes
SET
(
INCLUDE_INSTALL_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/include"
CACHE PATH
"The directory the headers are installed in"
)
...
...
@@ -36,9 +43,7 @@ ELSEIF(WIN32)
ENDIF
()
SET
(
CMAKE_INSTALL_DIR
"
${
_CMAKE_INSTALL_DIR
}
"
CACHE PATH
"The directory cmake fiels are installed in"
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/include
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
${
RAPIDJSON_CXX_FLAGS
}
"
)
if
(
RAPIDJSON_BUILD_DOC
)
add_subdirectory
(
doc
)
...
...
appveyor.yml
View file @
3a4835e0
...
...
@@ -25,4 +25,4 @@ build:
verbosity
:
minimal
test_script
:
-
cd Build\VS &&
ctest --verbose --build-config %CONFIGURATION%
-
cd Build\VS &&
if %CONFIGURATION%==Debug (ctest --verbose -E perftest --build-config %CONFIGURATION%) else (ctest --verbose --build-config %CONFIGURATION%)
example/CMakeLists.txt
View file @
3a4835e0
...
...
@@ -14,6 +14,14 @@ set(EXAMPLES
simplewriter
tutorial
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Werror -Wall -Wextra -Weffc++ -Wswitch-default"
)
elseif
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Werror -Wall -Wextra -Weffc++ -Wswitch-default"
)
elseif
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"MSVC"
)
add_definitions
(
-D_CRT_SECURE_NO_WARNINGS=1
)
endif
()
foreach
(
example
${
EXAMPLES
}
)
add_executable
(
${
example
}
${
example
}
/
${
example
}
.cpp
)
endforeach
()
...
...
test/unittest/CMakeLists.txt
View file @
3a4835e0
set
(
UNITTEST_SOURCES
bigintegertest.cpp
documenttest.cpp
encodedstreamtest.cpp
encodingstest.cpp
filestreamtest.cpp
jsoncheckertest.cpp
namespacetest.cpp
readertest.cpp
stringbuffertest.cpp
strtodtest.cpp
unittest.cpp
unittest.h
valuetest.cpp
writertest.cpp
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Werror -Weffc++ -Wswitch-default"
)
elseif
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Werror -Weffc++ -Wswitch-default"
)
elseif
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"MSVC"
)
add_definitions
(
-D_CRT_SECURE_NO_WARNINGS=1
)
endif
()
add_library
(
namespacetest STATIC namespacetest.cpp
)
add_executable
(
unittest
${
UNITTEST_SOURCES
}
)
...
...
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