-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
access-test: new SPD to test ACCESS-NRI infrastructure (#149)
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other | ||
# Spack Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# Copyright 2024 ACCESS-NRI | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
|
||
class AccessTest(BundlePackage): | ||
"""ACCESS-TEST bundle is for testing ACCESS-NRI infrastructure.""" | ||
|
||
homepage = "https://www.access-nri.org.au" | ||
|
||
git = "https://github.com/ACCESS-NRI/ACCESS-TEST.git" | ||
|
||
maintainers("harshula") | ||
|
||
version("latest") | ||
|
||
variant("deterministic", default=False, description="Deterministic build.") | ||
|
||
depends_on("oasis3-mct+deterministic", when="+deterministic", type="run") | ||
depends_on("oasis3-mct~deterministic", when="~deterministic", type="run") | ||
|
||
# There is no need for install() since there is no code. |