Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
d58d5958
Commit
d58d5958
authored
Nov 14, 2014
by
Dominic Hamon
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #66 from 3Hren/master
Using Travis CI.
parents
4249753c
1bc73789
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
49 additions
and
0 deletions
+49
-0
.travis.yml
.travis.yml
+46
-0
AUTHORS
AUTHORS
+1
-0
CONTRIBUTORS
CONTRIBUTORS
+1
-0
README.md
README.md
+1
-0
No files found.
.travis.yml
0 → 100644
View file @
d58d5958
matrix
:
include
:
-
os
:
linux
env
:
SUITE=tests BUILD_TYPE=Debug STD=c++0x
-
os
:
linux
env
:
SUITE=tests BUILD_TYPE=Debug STD=c++11
-
os
:
linux
env
:
SUITE=tests BUILD_TYPE=Release STD=c++0x
-
os
:
linux
env
:
SUITE=tests BUILD_TYPE=Release STD=c++11
-
os
:
linux
env
:
SUITE=examples BUILD_TYPE=Debug STD=c++0x
-
os
:
linux
env
:
SUITE=examples BUILD_TYPE=Debug STD=c++11
-
os
:
linux
env
:
SUITE=examples BUILD_TYPE=Release STD=c++0x
-
os
:
linux
env
:
SUITE=examples BUILD_TYPE=Release STD=c++11
-
os
:
osx
env
:
SUITE=tests BUILD_TYPE=Debug STD=c++11
-
os
:
osx
env
:
SUITE=tests BUILD_TYPE=Release STD=c++11
-
os
:
osx
env
:
SUITE=examples BUILD_TYPE=Debug STD=c++11
-
os
:
osx
env
:
SUITE=examples BUILD_TYPE=Release STD=c++11
language
:
-
cpp
before_install
:
-
if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$STD" = "c++11" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
-
if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$STD" = "c++11" ]; then sudo apt-get update -qq; fi
install
:
-
if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$STD" = "c++11" ]; then sudo apt-get install -qq gcc-4.8 g++-4.8; fi
-
if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$STD" = "c++11" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90; fi
before_script
:
-
mkdir build && cd build
script
:
-
cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DCMAKE_CXX_FLAGS="-std=${STD}"
-
make
-
if [ "$SUITE" = "tests" ]; then ./test/re_test; fi
-
if [ "$SUITE" = "examples" ]; then ./test/benchmark_test; fi
AUTHORS
View file @
d58d5958
...
@@ -13,6 +13,7 @@ Christopher Seymour <chris.j.seymour@hotmail.com>
...
@@ -13,6 +13,7 @@ Christopher Seymour <chris.j.seymour@hotmail.com>
David Coeurjolly <david.coeurjolly@liris.cnrs.fr>
David Coeurjolly <david.coeurjolly@liris.cnrs.fr>
Dominic Hamon <dma@stripysock.com>
Dominic Hamon <dma@stripysock.com>
Eugene Zhuk <eugene.zhuk@gmail.com>
Eugene Zhuk <eugene.zhuk@gmail.com>
Evgeny Safronov <division494@gmail.com>
Felix Homann <linuxaudio@showlabor.de>
Felix Homann <linuxaudio@showlabor.de>
Google Inc.
Google Inc.
JianXiong Zhou <zhoujianxiong2@gmail.com>
JianXiong Zhou <zhoujianxiong2@gmail.com>
...
...
CONTRIBUTORS
View file @
d58d5958
...
@@ -28,6 +28,7 @@ Christopher Seymour <chris.j.seymour@hotmail.com>
...
@@ -28,6 +28,7 @@ Christopher Seymour <chris.j.seymour@hotmail.com>
David Coeurjolly <david.coeurjolly@liris.cnrs.fr>
David Coeurjolly <david.coeurjolly@liris.cnrs.fr>
Dominic Hamon <dma@stripysock.com>
Dominic Hamon <dma@stripysock.com>
Eugene Zhuk <eugene.zhuk@gmail.com>
Eugene Zhuk <eugene.zhuk@gmail.com>
Evgeny Safronov <division494@gmail.com>
Felix Homann <linuxaudio@showlabor.de>
Felix Homann <linuxaudio@showlabor.de>
JianXiong Zhou <zhoujianxiong2@gmail.com>
JianXiong Zhou <zhoujianxiong2@gmail.com>
Lei Xu <eddyxu@gmail.com>
Lei Xu <eddyxu@gmail.com>
...
...
README.md
View file @
d58d5958
benchmark
benchmark
=========
=========
[

](https://travis-ci.org/google/benchmark)
[

](https://drone.io/github.com/google/benchmark/latest)
[

](https://drone.io/github.com/google/benchmark/latest)
A library to support the benchmarking of functions, similar to unit-tests.
A library to support the benchmarking of functions, similar to unit-tests.
...
...
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