Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

access-test: new SPD to test ACCESS-NRI infrastructure #149

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions packages/access-test/package.py
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.
Loading