Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
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
lvzhengyang
git2
Commits
6f446176
Commit
6f446176
authored
Nov 21, 2014
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2710 from Therzok/shellcheckScripts
Run shell scripts through shellcheck
parents
deadc43e
a4fccbbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
script/cibuild.sh
+4
-3
script/coverity.sh
+11
-11
No files found.
script/cibuild.sh
View file @
6f446176
...
...
@@ -7,13 +7,14 @@ then
fi
# Create a test repo which we can use for the online::push tests
mkdir
$HOME
/_temp
git init
--bare
$HOME
/_temp/test.git
git daemon
--listen
=
localhost
--export-all
--enable
=
receive-pack
--base-path
=
$HOME
/_temp
$HOME
/_temp 2>/dev/null &
mkdir
"
$HOME
"
/_temp
git init
--bare
"
$HOME
"
/_temp/test.git
git daemon
--listen
=
localhost
--export-all
--enable
=
receive-pack
--base-path
=
"
$HOME
"
/_temp
"
$HOME
"
/_temp 2>/dev/null &
export
GITTEST_REMOTE_URL
=
"git://localhost/test.git"
mkdir _build
cd
_build
# shellcheck disable=SC2086
cmake ..
-DCMAKE_INSTALL_PREFIX
=
../_install
$OPTIONS
||
exit
$?
make
-j2
install
||
exit
$?
ctest
-V
.
||
exit
$?
...
...
script/coverity.sh
View file @
6f446176
...
...
@@ -13,24 +13,24 @@ then
fi
COV_VERSION
=
6.6.1
case
`
uname
-m
`
in
case
$(
uname
-m
)
in
i?86
)
BITS
=
32
;;
amd64|x86_64
)
BITS
=
64
;;
esac
SCAN_TOOL
=
https://scan.coverity.com/download/linux-
${
BITS
}
TOOL_BASE
=
`
pwd
`
/_coverity-scan
TOOL_BASE
=
$(
pwd
)
/_coverity-scan
# Install coverity tools
if
[
!
-d
$TOOL_BASE
]
;
then
if
[
!
-d
"
$TOOL_BASE
"
]
;
then
echo
"Downloading coverity..."
mkdir
-p
$TOOL_BASE
cd
$TOOL_BASE
mkdir
-p
"
$TOOL_BASE
"
pushd
"
$TOOL_BASE
"
wget
-O
coverity_tool.tgz
$SCAN_TOOL
\
--post-data
"project=libgit2&token=
$COVERITY_TOKEN
"
tar
xzf coverity_tool.tgz
cd
..
TOOL_DIR
=
`
find
$TOOL_BASE
-type
d
-name
'cov-analysis*'
`
ln
-s
$TOOL_DIR
$TOOL_BASE
/cov-analysis
popd
TOOL_DIR
=
$(
find
"
$TOOL_BASE
"
-type
d
-name
'cov-analysis*'
)
ln
-s
"
$TOOL_DIR
"
"
$TOOL_BASE
"
/cov-analysis
fi
COV_BUILD
=
"
$TOOL_BASE
/cov-analysis/bin/cov-build"
...
...
@@ -46,12 +46,12 @@ COVERITY_UNSUPPORTED=1 \
# Upload results
tar
czf libgit2.tgz cov-int
SHA
=
`
git rev-parse
--short
HEAD
`
SHA
=
$(
git rev-parse
--short
HEAD
)
curl
\
--form
project
=
libgit2
\
--form
token
=
$COVERITY_TOKEN
\
--form
token
=
"
$COVERITY_TOKEN
"
\
--form
email
=
bs@github.com
\
--form
file
=
@libgit2.tgz
\
--form
version
=
$SHA
\
--form
version
=
"
$SHA
"
\
--form
description
=
"Travis build"
\
http://scan5.coverity.com/cgi-bin/upload.py
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