diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2018-10-19 15:14:15 -0400 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-12-20 09:23:08 -0800 |
commit | 738d2bd77a7419fd4e2831a71ba512d4ed8ad93a (patch) | |
tree | f8be05d907b5ddc8468626c2f6c97fd29913de9f /share | |
parent | 0bae6626a4e825c5138aca1da8a32d1e1de8f339 (diff) | |
download | spack-738d2bd77a7419fd4e2831a71ba512d4ed8ad93a.tar.gz spack-738d2bd77a7419fd4e2831a71ba512d4ed8ad93a.tar.bz2 spack-738d2bd77a7419fd4e2831a71ba512d4ed8ad93a.tar.xz spack-738d2bd77a7419fd4e2831a71ba512d4ed8ad93a.zip |
Allow more customization for CDash reporter
Add new command line arguments to `spack install` that allow users
to set the build name, site name, and track in their CDash report.
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/templates/reports/cdash/Site.xml | 4 | ||||
-rw-r--r-- | share/spack/templates/reports/cdash/Update.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/share/spack/templates/reports/cdash/Site.xml b/share/spack/templates/reports/cdash/Site.xml index a47ffd34e6..f0a150b6e5 100644 --- a/share/spack/templates/reports/cdash/Site.xml +++ b/share/spack/templates/reports/cdash/Site.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> -<Site BuildName="{{ install_command }}" +<Site BuildName="{{ buildname }}" BuildStamp="{{ buildstamp }}" - Name="{{ hostname }}" + Name="{{ site }}" OSName="{{ osname }}" > diff --git a/share/spack/templates/reports/cdash/Update.xml b/share/spack/templates/reports/cdash/Update.xml index 39f3d6a337..2ef5de347d 100644 --- a/share/spack/templates/reports/cdash/Update.xml +++ b/share/spack/templates/reports/cdash/Update.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <Update> - <Site>{{ hostname }}</Site> - <BuildName>{{ install_command }}</BuildName> + <Site>{{ site }}</Site> + <BuildName>{{ buildname }}</BuildName> <BuildStamp>{{ buildstamp }}</BuildStamp> <StartTime>{{ starttime }}</StartTime> <EndTime>{{ endtime }}</EndTime> |