Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
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
spdlog
Commits
4534d523
Commit
4534d523
authored
Aug 12, 2018
by
Daniel Chabrowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tsan and gcc 4.9 jobs
parent
af5a5164
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
25 deletions
+1
-25
.travis.yml
.travis.yml
+1
-25
No files found.
.travis.yml
View file @
4534d523
...
@@ -13,14 +13,6 @@ addons: &gcc48
...
@@ -13,14 +13,6 @@ addons: &gcc48
sources
:
sources
:
-
ubuntu-toolchain-r-test
-
ubuntu-toolchain-r-test
addons
:
&gcc49
apt
:
packages
:
-
g++-4.9
-
valgrind
sources
:
-
ubuntu-toolchain-r-test
addons
:
&gcc7
addons
:
&gcc7
apt
:
apt
:
packages
:
packages
:
...
@@ -58,15 +50,6 @@ matrix:
...
@@ -58,15 +50,6 @@ matrix:
os
:
linux
os
:
linux
addons
:
*gcc48
addons
:
*gcc48
# Test gcc-4.9: C++11, Build=Debug/Release
-
env
:
GCC_VERSION=4.9 BUILD_TYPE=Debug CPP=11
os
:
linux
addons
:
*gcc49
-
env
:
GCC_VERSION=4.9 BUILD_TYPE=Release CPP=11
os
:
linux
addons
:
*gcc49
# Test gcc-7: C++11, Build=Debug/Release
# Test gcc-7: C++11, Build=Debug/Release
-
env
:
GCC_VERSION=7 BUILD_TYPE=Debug CPP=11
-
env
:
GCC_VERSION=7 BUILD_TYPE=Debug CPP=11
os
:
linux
os
:
linux
...
@@ -90,11 +73,6 @@ matrix:
...
@@ -90,11 +73,6 @@ matrix:
os
:
linux
os
:
linux
addons
:
*clang6
addons
:
*clang6
# Test clang-6.0: C++11, Build=Debug, TSAN=On
-
env
:
CLANG_VERSION=6.0 BUILD_TYPE=Debug CPP=11 TSAN=On
os
:
linux
addons
:
*clang6
before_install
:
before_install
:
-
if [ -n "$GCC_VERSION" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}"; fi
-
if [ -n "$GCC_VERSION" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}"; fi
-
if [ -n "$CLANG_VERSION" ]; then export CXX="clang++-${CLANG_VERSION}" CC="clang-${CLANG_VERSION}"; fi
-
if [ -n "$CLANG_VERSION" ]; then export CXX="clang++-${CLANG_VERSION}" CC="clang-${CLANG_VERSION}"; fi
...
@@ -114,13 +92,11 @@ install:
...
@@ -114,13 +92,11 @@ install:
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_CXX_STANDARD=$CPP \
-DCMAKE_CXX_STANDARD=$CPP \
-DSPDLOG_BUILD_EXAMPLES=ON \
-DSPDLOG_BUILD_EXAMPLES=ON \
-DSPDLOG_SANITIZE_THREAD=$TSAN \
-DSPDLOG_SANITIZE_ADDRESS=$ASAN
-DSPDLOG_SANITIZE_ADDRESS=$ASAN
-
VERBOSE=1 make -j2
-
VERBOSE=1 make -j2
script
:
script
:
-
export TSAN_OPTIONS=verbosity=1
-
if [ "$ASAN" != "On" ]; then CTEST_FLAGS="-DExperimentalMemCheck"; fi
-
if [ "$ASAN" != "On" ] && [ "$TSAN" != "On" ]; then CTEST_FLAGS="-DExperimentalMemCheck"; fi
-
ctest -j2 -VV $CTEST_FLAGS
-
ctest -j2 -VV $CTEST_FLAGS
notifications
:
notifications
:
...
...
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