Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
6355ee20
Commit
6355ee20
authored
6 years ago
by
Zack Galbreath
Committed by
Todd Gamblin
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Include accurate build time in CDash report
parent
8d087208
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
lib/spack/spack/reporters/cdash.py
+10
-6
10 additions, 6 deletions
lib/spack/spack/reporters/cdash.py
with
10 additions
and
6 deletions
lib/spack/spack/reporters/cdash.py
+
10
−
6
View file @
6355ee20
...
@@ -63,10 +63,10 @@ def __init__(self, args):
...
@@ -63,10 +63,10 @@ def __init__(self, args):
self
.
buildname
=
args
.
cdash_build
or
self
.
install_command
self
.
buildname
=
args
.
cdash_build
or
self
.
install_command
self
.
site
=
args
.
cdash_site
or
socket
.
gethostname
()
self
.
site
=
args
.
cdash_site
or
socket
.
gethostname
()
self
.
osname
=
platform
.
system
()
self
.
osname
=
platform
.
system
()
self
.
start
time
=
int
(
time
.
time
())
self
.
end
time
=
int
(
time
.
time
())
buildstamp_format
=
"
%Y%m%d-%H%M-{0}
"
.
format
(
args
.
cdash_track
)
buildstamp_format
=
"
%Y%m%d-%H%M-{0}
"
.
format
(
args
.
cdash_track
)
self
.
buildstamp
=
time
.
strftime
(
buildstamp_format
,
self
.
buildstamp
=
time
.
strftime
(
buildstamp_format
,
time
.
localtime
(
self
.
start
time
))
time
.
localtime
(
self
.
end
time
))
self
.
buildId
=
None
self
.
buildId
=
None
self
.
revision
=
''
self
.
revision
=
''
git
=
which
(
'
git
'
)
git
=
which
(
'
git
'
)
...
@@ -80,16 +80,18 @@ def build_report(self, filename, report_data):
...
@@ -80,16 +80,18 @@ def build_report(self, filename, report_data):
report_data
[
phase
]
=
{}
report_data
[
phase
]
=
{}
report_data
[
phase
][
'
log
'
]
=
""
report_data
[
phase
][
'
log
'
]
=
""
report_data
[
phase
][
'
status
'
]
=
0
report_data
[
phase
][
'
status
'
]
=
0
report_data
[
phase
][
'
starttime
'
]
=
self
.
starttime
report_data
[
phase
][
'
endtime
'
]
=
self
.
endtime
report_data
[
phase
][
'
endtime
'
]
=
self
.
starttime
# Track the phases we perform so we know what reports to create.
# Track the phases we perform so we know what reports to create.
phases_encountered
=
[]
phases_encountered
=
[]
total_duration
=
0
# Parse output phase-by-phase.
# Parse output phase-by-phase.
phase_regexp
=
re
.
compile
(
r
"
Executing phase:
'
(.*)
'"
)
phase_regexp
=
re
.
compile
(
r
"
Executing phase:
'
(.*)
'"
)
cdash_phase
=
''
cdash_phase
=
''
for
spec
in
report_data
[
'
specs
'
]:
for
spec
in
report_data
[
'
specs
'
]:
if
'
time
'
in
spec
:
total_duration
+=
int
(
spec
[
'
time
'
])
for
package
in
spec
[
'
packages
'
]:
for
package
in
spec
[
'
packages
'
]:
if
'
stdout
'
in
package
:
if
'
stdout
'
in
package
:
current_phase
=
''
current_phase
=
''
...
@@ -121,7 +123,9 @@ def build_report(self, filename, report_data):
...
@@ -121,7 +123,9 @@ def build_report(self, filename, report_data):
build_pos
=
phases_encountered
.
index
(
"
build
"
)
build_pos
=
phases_encountered
.
index
(
"
build
"
)
phases_encountered
.
insert
(
0
,
phases_encountered
.
pop
(
build_pos
))
phases_encountered
.
insert
(
0
,
phases_encountered
.
pop
(
build_pos
))
self
.
starttime
=
self
.
endtime
-
total_duration
for
phase
in
phases_encountered
:
for
phase
in
phases_encountered
:
report_data
[
phase
][
'
starttime
'
]
=
self
.
starttime
errors
,
warnings
=
parse_log_events
(
errors
,
warnings
=
parse_log_events
(
report_data
[
phase
][
'
log
'
].
splitlines
())
report_data
[
phase
][
'
log
'
].
splitlines
())
nerrors
=
len
(
errors
)
nerrors
=
len
(
errors
)
...
@@ -182,8 +186,8 @@ def concretization_report(self, filename, msg):
...
@@ -182,8 +186,8 @@ def concretization_report(self, filename, msg):
report_data
=
{}
report_data
=
{}
self
.
initialize_report
(
filename
,
report_data
)
self
.
initialize_report
(
filename
,
report_data
)
report_data
[
'
update
'
]
=
{}
report_data
[
'
update
'
]
=
{}
report_data
[
'
update
'
][
'
starttime
'
]
=
self
.
start
time
report_data
[
'
update
'
][
'
starttime
'
]
=
self
.
end
time
report_data
[
'
update
'
][
'
endtime
'
]
=
self
.
start
time
report_data
[
'
update
'
][
'
endtime
'
]
=
self
.
end
time
report_data
[
'
update
'
][
'
revision
'
]
=
self
.
revision
report_data
[
'
update
'
][
'
revision
'
]
=
self
.
revision
report_data
[
'
update
'
][
'
log
'
]
=
msg
report_data
[
'
update
'
][
'
log
'
]
=
msg
...
...
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