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
!14
Fix json-cpp variable name
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix json-cpp variable name
fix-json-cpp-var-name
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Roman Azarenko
requested to merge
fix-json-cpp-var-name
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
36c9bde0
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Unverified
36c9bde0
Fix json-cpp variable name
· 36c9bde0
Roman Azarenko
authored
2 years ago
docker/code-analysis/Dockerfile
+
3
−
3
Options
@@ -172,13 +172,13 @@ RUN \
make
&&
\
make
install
#
nlohmann
ARG
NLOHMANN
_VERSION=be61ad147000be4802173d0d118fd1b8109b4668
#
json-cpp
ARG
JSON_CPP
_VERSION=be61ad147000be4802173d0d118fd1b8109b4668
RUN
\
cd
/opt/dev
&&
\
git clone https://github.com/nlohmann/json.git
&&
\
cd
json
&&
\
git checkout
${
NLOHMANN
_VERSION
}
&&
\
git checkout
${
JSON_CPP
_VERSION
}
&&
\
mkdir
build
&&
\
cd
build
&&
\
cmake ..
&&
\
Loading