Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
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
俞永鹏
node-sqlite3
Commits
fd0d233f
Commit
fd0d233f
authored
Nov 02, 2015
by
Dane Springmeyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more coverage fixes
parent
43b59000
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
.travis.yml
.travis.yml
+7
-4
build_against_node.sh
scripts/build_against_node.sh
+1
-1
No files found.
.travis.yml
View file @
fd0d233f
...
@@ -37,8 +37,11 @@ before_install:
...
@@ -37,8 +37,11 @@ before_install:
-
export PUBLISHABLE=${PUBLISHABLE:-true}
-
export PUBLISHABLE=${PUBLISHABLE:-true}
-
export COVERAGE=${COVERAGE:-false}
-
export COVERAGE=${COVERAGE:-false}
-
if [[ $(uname -s) == 'Linux' ]]; then
-
if [[ $(uname -s) == 'Linux' ]]; then
export CXX="clang++-3.5";
export CXX="clang++-3.5";
export CC="clang-3.5";
export CC="clang-3.5";
export PYTHONPATH=$(pwd)/py-local/lib/python2.7/site-packages;
else
export PYTHONPATH=$(pwd)/py-local/lib/python/site-packages;
fi;
fi;
-
scripts/validate_tag.sh
-
scripts/validate_tag.sh
-
source ./scripts/install_node.sh ${NODE_VERSION}
-
source ./scripts/install_node.sh ${NODE_VERSION}
...
@@ -52,9 +55,9 @@ before_script:
...
@@ -52,9 +55,9 @@ before_script:
-
export COMMIT_MESSAGE=$(git show -s --format=%B $TRAVIS_COMMIT | tr -d '\n')
-
export COMMIT_MESSAGE=$(git show -s --format=%B $TRAVIS_COMMIT | tr -d '\n')
-
if [[ ${COVERAGE} ==
true
]]; then
-
if [[ ${COVERAGE} ==
true
]]; then
if [[ $(uname -s) == 'Linux' ]]; then
if [[ $(uname -s) == 'Linux' ]]; then
PYTHONUSERBASE=$(pwd)/
mason_packages/.link
pip install --user cpp-coveralls;
PYTHONUSERBASE=$(pwd)/
py-local
pip install --user cpp-coveralls;
else
else
PYTHONUSERBASE=$(pwd)/
mason_packages/.link
easy_install --user cpp-coveralls;
PYTHONUSERBASE=$(pwd)/
py-local
easy_install --user cpp-coveralls;
fi;
fi;
fi
fi
...
...
scripts/build_against_node.sh
View file @
fd0d233f
...
@@ -17,7 +17,7 @@ function publish() {
...
@@ -17,7 +17,7 @@ function publish() {
if
[[
${
COVERAGE
}
==
true
]]
;
then
if
[[
${
COVERAGE
}
==
true
]]
;
then
CXXFLAGS
=
"--coverage"
LDFLAGS
=
"--coverage"
npm install
--build-from-source
--clang
=
1
--verbose
CXXFLAGS
=
"--coverage"
LDFLAGS
=
"--coverage"
npm install
--build-from-source
--clang
=
1
--verbose
npm
test
npm
test
./
mason_packages/.link
/bin/cpp-coveralls
--exclude
node_modules
--exclude
tests
--build-root
build
--gcov-options
'\-lp'
--exclude
docs
--exclude
build/Release/obj/gen
--exclude
deps
./
py-local
/bin/cpp-coveralls
--exclude
node_modules
--exclude
tests
--build-root
build
--gcov-options
'\-lp'
--exclude
docs
--exclude
build/Release/obj/gen
--exclude
deps
else
else
npm install
--build-from-source
--clang
=
1
npm install
--build-from-source
--clang
=
1
npm
test
npm
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