Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
vite
Commits
72b33654
Commit
72b33654
authored
Dec 11, 2019
by
Mathieu Faverge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update CI
parent
3354f967
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
analysis.sh
analysis.sh
+6
-8
No files found.
.gitlab-ci.yml
View file @
72b33654
...
...
@@ -15,7 +15,7 @@ build_vite:
-
mkdir build
-
cd build
-
cmake .. -DCMAKE_INSTALL_PREFIX=${PWD}/../install -DBUILD_SHARED_LIBS=ON -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_C_FLAGS="-O0 -g -fPIC --coverage -Wall -fdiagnostics-show-option -fno-inline" -DCMAKE_EXE_LINKER_FLAGS="--coverage" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-
make
-j 4
| tee ../vite-build.log
-
make | tee ../vite-build.log
-
make install | tee -a ../vite-build.log
only
:
-
branches
...
...
analysis.sh
View file @
72b33654
#!/
bin/
bash
#!/
usr/bin/env
bash
# Performs an analysis of Vite source code:
# - we consider to be in Vite's source code root
...
...
@@ -7,8 +7,6 @@
# filter sources:
# - consider generated files in ${BUILDDIR}
# - exclude base *z* files to avoid duplication
# - exclude cblas.h and lapacke-.h because not really part of vite and make cppcheck analysis too long
if
[
$#
-gt
0
]
then
...
...
@@ -32,13 +30,13 @@ SONARQUBE_PROJECTKEY=${SONARQUBE_PROJECTKEY:-hiepacs:vite:gitlab:master}
# create the sonarqube config file
cat
>
sonar-project.properties
<<
EOF
sonar.host.url=https://sonarqube.
bordeaux.
inria.fr/sonarqube
sonar.host.url=https://sonarqube.inria.fr/sonarqube
sonar.login=
$SONARQUBE_LOGIN
sonar.links.homepage=
https://gitlab.inria.fr/solverstack/vite
sonar.links.scm=
https://gitlab.inria.fr/solverstack/vite.git
sonar.links.ci=
https://gitlab.inria.fr/solverstack/vite
/pipelines
sonar.links.issue=
https://gitlab.inria.fr/solverstack/vite
/issues
sonar.links.homepage=
$CI_PROJECT_URL
sonar.links.scm=
$CI_REPOSITORY_URL
sonar.links.ci=
$CI_PROJECT_URL
/pipelines
sonar.links.issue=
$CI_PROJECT_URL
/issues
sonar.projectKey=
$SONARQUBE_PROJECTKEY
sonar.projectDescription=Parallel Sparse direct Solver
...
...
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