Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gitlab-ci-pipeline
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
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
IOPSYS
gitlab-ci-pipeline
Merge requests
!26
Added infer and minor cleanup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added infer and minor cleanup
infer
into
devel
Overview
8
Commits
5
Pipelines
0
Changes
3
All threads resolved!
Hide all comments
Merged
Vivek Dutta
requested to merge
infer
into
devel
7 months ago
Overview
8
Commits
5
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
version 2
version 6
01297525
6 months ago
version 5
9566df31
6 months ago
version 4
1fc8b75e
6 months ago
version 3
8836ee16
6 months ago
version 2
1143a77e
6 months ago
version 1
8e349e39
7 months ago
devel (base)
and
version 4
latest version
3813551d
5 commits,
6 months ago
version 6
01297525
3 commits,
6 months ago
version 5
9566df31
2 commits,
6 months ago
version 4
1fc8b75e
2 commits,
6 months ago
version 3
8836ee16
1 commit,
6 months ago
version 2
1143a77e
1 commit,
6 months ago
version 1
8e349e39
1 commit,
7 months ago
Show latest version
2 files
+
18
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
docker/code-analysis/Dockerfile
+
4
−
7
Options
@@ -236,13 +236,10 @@ RUN \
ln
-sf
/usr/lib/libmicroxml.so.1.0 /lib/libmicroxml.so.1
# Download the Infer release
RUN
INFER_VERSION
=
v1.2.0
;
\
cd
/opt
&&
\
curl
-sL
\
https://github.com/facebook/infer/releases/download/
${
INFER_VERSION
}
/infer-linux-x86_64-
${
INFER_VERSION
}
.tar.xz |
\
tar
xJ
&&
\
rm
-f
/infer
&&
\
ln
-s
${
PWD
}
/infer-linux-x86_64-
$INFER_VERSION
/infer
ARG
INFER_VERSION=v1.2.0
RUN
cd
/opt/dev
&&
\
curl
-sL
https://github.com/facebook/infer/releases/download/
${
INFER_VERSION
}
/infer-linux-x86_64-
${
INFER_VERSION
}
.tar.xz |
tar
xJ
&&
\
mv
/opt/dev/infer-linux-x86_64-
$INFER_VERSION
/infer
# Install infer
ENV
PATH /infer/bin:${PATH}
Loading