Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parser-dl-poly
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This project is archived. Its data is
read-only
.
Show more breadcrumbs
nomad-lab
parser-dl-poly
Commits
e50d7ad5
Commit
e50d7ad5
authored
Apr 28, 2016
by
ankit kariryaa
Browse files
Options
Downloads
Patches
Plain Diff
Add nomad meta info version and update ci script
parent
ae6b4ca4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-2
1 addition, 2 deletions
.gitlab-ci.yml
src/main/scala/eu/nomad_lab/parsers/DlPolyParser.scala
+3
-1
3 additions, 1 deletion
src/main/scala/eu/nomad_lab/parsers/DlPolyParser.scala
with
4 additions
and
3 deletions
.gitlab-ci.yml
+
1
−
2
View file @
e50d7ad5
...
...
@@ -15,4 +15,3 @@ testing:
tags
:
-
test
-
spec2
\ No newline at end of file
allow_failure
:
true
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/scala/eu/nomad_lab/parsers/DlPolyParser.scala
+
3
−
1
View file @
e50d7ad5
...
...
@@ -11,7 +11,9 @@ object DlPolyParser extends SimpleExternalParserGenerator(
(
"name"
->
jn
.
JString
(
"DlPolyParser"
))
::
(
"parserId"
->
jn
.
JString
(
"DlPolyParser"
+
lab
.
DlPolyVersionInfo
.
version
))
::
(
"versionInfo"
->
jn
.
JObject
(
(
"nomadCoreVersion"
->
jn
.
JString
(
lab
.
NomadCoreVersionInfo
.
version
))
::
(
"nomadCoreVersion"
->
jn
.
JObject
(
lab
.
NomadCoreVersionInfo
.
toMap
.
map
{
case
(
k
,
v
)
=>
k
->
jn
.
JString
(
v
.
toString
)
}(
breakOut
)
:
List
[(
String
,
jn.JString
)]))
::
(
lab
.
DlPolyVersionInfo
.
toMap
.
map
{
case
(
key
,
value
)
=>
(
key
->
jn
.
JString
(
value
.
toString
))
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment