Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
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
googletest
Commits
6fc49050
Commit
6fc49050
authored
Sep 01, 2015
by
Billy Donahue
Browse files
Options
Browse Files
Download
Plain Diff
run tests
parents
9986d43d
8be1b6b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
27 deletions
+13
-27
.travis.yml
.travis.yml
+4
-3
travis.sh
travis.sh
+9
-24
No files found.
.travis.yml
View file @
6fc49050
...
@@ -17,7 +17,6 @@ install:
...
@@ -17,7 +17,6 @@ install:
-
export PATH=/usr/local/bin:/usr/bin:${PATH}
-
export PATH=/usr/local/bin:/usr/bin:${PATH}
-
echo ${CXX}
-
echo ${CXX}
-
${CXX} --version
-
${CXX} --version
-
which valgrind
addons
:
addons
:
apt
:
apt
:
sources
:
sources
:
...
@@ -37,8 +36,10 @@ compiler:
...
@@ -37,8 +36,10 @@ compiler:
script
:
./travis.sh
script
:
./travis.sh
env
:
env
:
matrix
:
matrix
:
# - SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
-
GTEST_TARGET=googletest SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
-
SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
-
GTEST_TARGET=googlemock SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
-
GTEST_TARGET=googletest SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
-
GTEST_TARGET=googlemock SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
notifications
:
notifications
:
email
:
false
email
:
false
sudo
:
false
sudo
:
false
travis.sh
View file @
6fc49050
#!/usr/bin/env sh
#!/usr/bin/env sh
# This is called by `.travis.yml` via Travis CI.
# Travis supplies $TRAVIS_OS_NAME.
# http://docs.travis-ci.com/user/multi-os/
# Our .travis.yml also defines:
# - SHARED_LIB=ON/OFF
# - STATIC_LIB=ON/OFF
# - CMAKE_PKG=ON/OFF
# - BUILD_TYPE=release/debug
# - VERBOSE_MAKE=false/true
# - VERBOSE (set or not)
# -e: fail on error
# -v: show commands
# -x: show expanded commands
set
-evx
set
-evx
env
|
sort
env
|
sort
mkdir
build
||
true
mkdir
build
||
true
mkdir
build/
$GTEST_TARGET
||
true
(
(
mkdir
build/googletest
||
true
)
&&
cd
build/
$GTEST_TARGET
cd
build/googletest
&&
cmake
-Dgtest_build_samples
=
ON
\
cmake
-Dgtest_build_tests
=
ON
-Dgtest_build_samples
=
ON ../../googletest
&&
-Dgmock_build_samples
=
ON
\
make
&&
make
test
)
-Dgtest_build_tests
=
ON
\
(
(
mkdir
build/googlemock
||
true
)
&&
-Dgmock_build_tests
=
ON
\
cd
build/googlemock
&&
../../
$GTEST_TARGET
cmake
-Dgmock_build_tests
=
ON
-Dgtest_build_samples
=
ON ../../googlemock
&&
make
make
&&
make
test
)
make
test
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