Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
William Mansky
Iris
Commits
115c4a17
Commit
115c4a17
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
first version of a script ti extract benachmark results from GitLab
parent
7e49776c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
benchmark/gitlab-extract.py
+35
-0
35 additions, 0 deletions
benchmark/gitlab-extract.py
with
35 additions
and
0 deletions
benchmark/gitlab-extract.py
0 → 100755
+
35
−
0
View file @
115c4a17
#!/usr/bin/env python3
import
argparse
,
pprint
import
requests
def
first
(
it
):
for
i
in
it
:
return
i
raise
Exception
(
"
The iterator is empty
"
)
def
req
(
path
):
url
=
'
%s/api/v3/%s
'
%
(
args
.
server
,
path
)
return
requests
.
get
(
url
,
headers
=
{
'
PRIVATE-TOKEN
'
:
args
.
private_token
}).
json
()
# read command-line arguments
parser
=
argparse
.
ArgumentParser
(
description
=
'
Update and build a bunch of stuff
'
)
parser
.
add_argument
(
"
-t
"
,
"
--private-token
"
,
dest
=
"
private_token
"
,
required
=
True
,
help
=
"
The private token used to authenticate access
"
)
parser
.
add_argument
(
"
-s
"
,
"
--server
"
,
dest
=
"
server
"
,
default
=
"
https://gitlab.mpi-sws.org/
"
,
help
=
"
The GitLab server to contact
"
)
parser
.
add_argument
(
"
-p
"
,
"
--project
"
,
dest
=
"
project
"
,
default
=
"
FP / iris-coq
"
,
help
=
"
The name of the project on GitLab
"
)
args
=
parser
.
parse_args
()
pp
=
pprint
.
PrettyPrinter
(
indent
=
4
)
projects
=
req
(
"
projects
"
)
project
=
first
(
filter
(
lambda
p
:
p
[
'
name_with_namespace
'
]
==
args
.
project
,
projects
))
commit
=
"
7e49776c0b3565364823665ab11ee91ed95ade63
"
build
=
first
(
sorted
(
req
(
"
/projects/{}/repository/commits/{}/builds
"
.
format
(
project
[
'
id
'
],
commit
)),
key
=
lambda
b
:
-
int
(
b
[
'
id
'
])))
print
(
"
The build ID is {}
"
.
format
(
build
[
'
id
'
]))
print
(
requests
.
get
(
"
{}/{}/builds/{}/artifacts/file/build-time.txt
"
.
format
(
args
.
server
,
args
.
project
.
replace
(
'
'
,
''
),
build
[
'
id
'
])).
text
)
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
register
or
sign in
to comment