diff options
author | Richarda Butler <39577672+RikkiButler20@users.noreply.github.com> | 2021-05-25 17:34:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 17:34:11 -0700 |
commit | 1b6b5e16113f3ea0fdfd656ad3d3b384e2217f5a (patch) | |
tree | 6d2bc78813871d5f2dd4d02e193e3d5f6354cd7e /var | |
parent | dbde984de1da0a44c02026dedc6bef5eb8192155 (diff) | |
download | spack-1b6b5e16113f3ea0fdfd656ad3d3b384e2217f5a.tar.gz spack-1b6b5e16113f3ea0fdfd656ad3d3b384e2217f5a.tar.bz2 spack-1b6b5e16113f3ea0fdfd656ad3d3b384e2217f5a.tar.xz spack-1b6b5e16113f3ea0fdfd656ad3d3b384e2217f5a.zip |
AML: Add submodules to develop and master versions (#23903)
Co-authored-by: Kayla Richarda Butler <butler59@quartz1916.llnl.gov>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/aml/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/aml/package.py b/var/spack/repos/builtin/packages/aml/package.py index a29e587a45..e647f26938 100644 --- a/var/spack/repos/builtin/packages/aml/package.py +++ b/var/spack/repos/builtin/packages/aml/package.py @@ -12,9 +12,10 @@ class Aml(AutotoolsPackage): homepage = "https://xgitlab.cels.anl.gov/argo/aml" url = "https://www.mcs.anl.gov/research/projects/argo/downloads/aml-0.1.0.tar.gz" git = "https://xgitlab.cels.anl.gov/argo/aml.git" + version('0.1.0', sha256='cc89a8768693f1f11539378b21cdca9f0ce3fc5cb564f9b3e4154a051dcea69b') - version('develop', branch='staging') - version('master', branch='master') + version('develop', branch='staging', submodules=True) + version('master', branch='master', submodules=True) depends_on('numactl') |