diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2018-04-19 15:20:10 -0400 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-05-15 05:43:07 -0700 |
commit | d7581697a53f7b7f4bb7abadc37abf0dfa924ea1 (patch) | |
tree | 52da655ac9fa14c67f3b2fa28bcfc7f766482c7f /templates/reports | |
parent | f35d5bbf2b5dad4cada8547d1e29118f80cddd33 (diff) | |
download | spack-d7581697a53f7b7f4bb7abadc37abf0dfa924ea1.tar.gz spack-d7581697a53f7b7f4bb7abadc37abf0dfa924ea1.tar.bz2 spack-d7581697a53f7b7f4bb7abadc37abf0dfa924ea1.tar.xz spack-d7581697a53f7b7f4bb7abadc37abf0dfa924ea1.zip |
CDash report for configure step
Generate CTest XML file containing configure output
Diffstat (limited to 'templates/reports')
-rw-r--r-- | templates/reports/cdash/Configure.xml | 8 | ||||
-rw-r--r-- | templates/reports/cdash/Site.xml | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/templates/reports/cdash/Configure.xml b/templates/reports/cdash/Configure.xml new file mode 100644 index 0000000000..0451279563 --- /dev/null +++ b/templates/reports/cdash/Configure.xml @@ -0,0 +1,8 @@ + <Configure> + <StartConfigureTime>{{ configure.starttime }}</StartConfigureTime> + <ConfigureCommand>{{ install_command }}</ConfigureCommand> + <Log>{{ configure.log }}</Log> + <ConfigureStatus>{{ configure.status }}</ConfigureStatus> + <EndConfigureTime>{{ configure.endtime }}</EndConfigureTime> + </Configure> +</Site> diff --git a/templates/reports/cdash/Site.xml b/templates/reports/cdash/Site.xml new file mode 100644 index 0000000000..a47ffd34e6 --- /dev/null +++ b/templates/reports/cdash/Site.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Site BuildName="{{ install_command }}" + BuildStamp="{{ buildstamp }}" + Name="{{ hostname }}" + OSName="{{ osname }}" +> + |