Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
a48c4e5e
Commit
a48c4e5e
authored
Aug 31, 2015
by
Billy Donahue
Browse files
cleanup travis.sh
parent
e5c7bbae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
25 deletions
+7
-25
travis.sh
travis.sh
+7
-25
No files found.
travis.sh
View file @
a48c4e5e
#!/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
mkdir
build
for
d
in
googletest googlemock
(
mkdir
build/googletest
&&
do
cd
build/googletest
&&
(
mkdir
build/
$d
&&
cmake ../../googletest
&&
cd
build/
$d
&&
make
)
cmake ../../
$d
&&
(
mkdir
build/googlemock
&&
make
)
cd
build/googlemock
&&
done
cmake ../../googlemock
&&
make
)
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