Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG-RAN
Commits
dbb0bca5
Commit
dbb0bca5
authored
3 years ago
by
hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new ci files to build gir MR dashboard
parent
f21ac1a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
0 deletions
+94
-0
ci-scripts/Jenkinsfile-git-dashboard
ci-scripts/Jenkinsfile-git-dashboard
+45
-0
ci-scripts/data_extraction_from_gitlab.py
ci-scripts/data_extraction_from_gitlab.py
+49
-0
No files found.
ci-scripts/Jenkinsfile-git-dashboard
0 → 100644
View file @
dbb0bca5
#
!
/bin/
groovy
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.1 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
// Template Jenkins Declarative Pipeline script to run Test w/ RF HW
// Location of the python executor node shall be in the same subnet as the others servers
def
pythonExecutor
=
params
.
pythonExecutor
pipeline
{
agent
{
label
pythonExecutor
}
stages
{
stage
(
"Fetch Data"
)
{
steps
{
script
{
//retrieve MR data from gitlab
sh
returnStdout:
true
,
script:
'python3 ci-scripts/data_extraction_from_gitlab.py'
}
}
}
}
}
This diff is collapsed.
Click to expand it.
ci-scripts/data_extraction_from_gitlab.py
0 → 100644
View file @
dbb0bca5
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 31 21:57:37 2021
@author: hardy
"""
import
subprocess
import
shlex
import
json
import
datetime
cmd
=
"""curl --silent "https://gitlab.eurecom.fr/api/v4/projects/oai%2Fopenairinterface5g/merge_requests?state=opened&per_page=100" """
process
=
subprocess
.
Popen
(
shlex
.
split
(
cmd
),
stdout
=
subprocess
.
PIPE
)
output
=
process
.
stdout
.
readline
()
tmp
=
output
.
decode
(
"utf-8"
)
d
=
json
.
loads
(
tmp
)
f
=
open
(
"/tmp/gitlab_dashboard.txt"
,
"w"
)
f
.
write
(
"MR;Created_at;Author;Title;CAN START;IN PROGRESS;COMPLETED;OK MERGE;Merge conflicts
\n
"
)
for
x
in
range
(
len
(
d
)):
date_time_str
=
d
[
x
][
'created_at'
]
date_time_obj
=
datetime
.
datetime
.
strptime
(
date_time_str
,
'%Y-%m-%dT%H:%M:%S.%fZ'
)
milestone1
=
milestone2
=
milestone3
=
milestone4
=
""
if
d
[
x
][
'milestone'
]
==
"REVIEW_CAN_START"
:
milestone1
=
"X"
elif
d
[
x
][
'milestone'
]
==
"REVIEW_IN_PROGRESS"
:
milestone2
=
"X"
elif
d
[
x
][
'milestone'
]
==
"REVIEW_COMPLETED_AND_APPROVED"
:
milestone3
=
"X"
elif
d
[
x
][
'milestone'
]
==
"OK_TO_BE_MERGED"
:
milestone4
=
"X"
else
:
pass
if
d
[
x
][
'has_conflicts'
]
==
True
:
conflicts
=
"YES"
else
:
conflicts
=
""
f
.
write
(
str
(
d
[
x
][
'iid'
])
+
';'
+
str
(
date_time_obj
.
date
())
+
';'
+
str
(
d
[
x
][
'author'
][
'name'
])
+
';'
+
str
(
d
[
x
][
'title'
])
+
";"
\
+
milestone1
+
";"
+
milestone2
+
";"
+
milestone3
+
";"
+
milestone4
+
";"
+
conflicts
+
"
\n
"
)
f
.
close
()
This diff is collapsed.
Click to expand it.
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