Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
map-controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Multi-AP
map-controller
Merge requests
!233
CI: Start using latest image for static analysis and compile test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
CI: Start using latest image for static analysis and compile test
fm-fix-pipeline
into
devel
Overview
2
Commits
2
Pipelines
25
Changes
1
Closed
Filip Matusiak
requested to merge
fm-fix-pipeline
into
devel
2 years ago
Overview
2
Commits
2
Pipelines
25
Changes
1
Expand
0
0
Merge request reports
Compare
devel
version 25
9326509e
1 year ago
version 24
52b5323d
1 year ago
version 23
86a3ccdd
1 year ago
version 22
79709043
1 year ago
version 21
f56f9e4f
1 year ago
version 20
b240c211
1 year ago
version 19
cf01b502
1 year ago
version 18
e90b3230
1 year ago
version 17
3f53e366
1 year ago
version 16
d2626069
1 year ago
version 15
6702c9e2
1 year ago
version 14
e05a0a1f
1 year ago
version 13
91858ee5
1 year ago
version 12
2d6b7df5
1 year ago
version 11
26a65905
1 year ago
version 10
616dc260
1 year ago
version 9
7c574fdc
2 years ago
version 8
34318eea
2 years ago
version 7
c3c8c371
2 years ago
version 6
65de5ba9
2 years ago
version 5
e7e27fe4
2 years ago
version 4
d3c65496
2 years ago
version 3
b1d3a390
2 years ago
version 2
f6676127
2 years ago
version 1
e77082ba
2 years ago
devel (base)
and
latest version
latest version
9326509e
2 commits,
1 year ago
version 25
9326509e
2 commits,
1 year ago
version 24
52b5323d
2 commits,
1 year ago
version 23
86a3ccdd
2 commits,
1 year ago
version 22
79709043
2 commits,
1 year ago
version 21
f56f9e4f
2 commits,
1 year ago
version 20
b240c211
2 commits,
1 year ago
version 19
cf01b502
2 commits,
1 year ago
version 18
e90b3230
2 commits,
1 year ago
version 17
3f53e366
2 commits,
1 year ago
version 16
d2626069
1 commit,
1 year ago
version 15
6702c9e2
1 commit,
1 year ago
version 14
e05a0a1f
1 commit,
1 year ago
version 13
91858ee5
1 commit,
1 year ago
version 12
2d6b7df5
1 commit,
1 year ago
version 11
26a65905
1 commit,
1 year ago
version 10
616dc260
1 commit,
1 year ago
version 9
7c574fdc
1 commit,
2 years ago
version 8
34318eea
1 commit,
2 years ago
version 7
c3c8c371
1 commit,
2 years ago
version 6
65de5ba9
1 commit,
2 years ago
version 5
e7e27fe4
1 commit,
2 years ago
version 4
d3c65496
1 commit,
2 years ago
version 3
b1d3a390
1 commit,
2 years ago
version 2
f6676127
1 commit,
2 years ago
version 1
e77082ba
1 commit,
2 years ago
1 file
+
2
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
2
−
4
Options
include
:
-
project
:
'
iopsys/gitlab-ci-pipeline'
file
:
'
/static-code-analysis.yml'
ref
:
'
0.27'
stages
:
-
static_code_analysis
@@ -12,13 +11,12 @@ stages:
variables
:
DEBUG
:
'
TRUE'
SOURCE_FOLDER
:
"
."
RUN_CPPCHECK
:
"
cppcheck
--enable=all
--error-exitcode=1
--suppress=unusedFunction
--suppress=unreadVariable
--suppress=variableScope
--inline-suppr
."
CPPCHECK_OPTIONS
:
"
--enable=all
--suppress=missingIncludeSystem
--suppress=unusedFunction
--suppress=unreadVariable
--suppress=variableScope"
RUN_CPD
:
"
/home/user/pmd-bin-6.19.0/bin/run.sh
cpd
--minimum-tokens
300
--language
c
--exclude
./test/cmocka
--files"
CPD_OPTIONS
:
"
--minimum-tokens
300
--language
c
--exclude
./test/cmocka
--files"
run_compile_test
:
stage
:
compile_test
image
:
dev.iopsys.eu:5050/iopsys/gitlab-ci-pipeline/code-analysis:0.2
7
image
:
dev.iopsys.eu:5050/iopsys/gitlab-ci-pipeline/code-analysis:0.2
9
allow_failure
:
false
script
:
-
"
./gitlab-ci/install-dependencies.sh"
Loading