Skip to content

Commit

Permalink
access-om2: pass type to depends_on() (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshula authored Jul 7, 2024
1 parent f30cf04 commit c5e1a5c
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions packages/access-om2/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,19 @@ class AccessOm2(BundlePackage):

variant("deterministic", default=False, description="Deterministic build.")

depends_on("libaccessom2+deterministic", when="+deterministic")
depends_on("libaccessom2~deterministic", when="~deterministic")
depends_on("cice5+deterministic", when="+deterministic")
depends_on("cice5~deterministic", when="~deterministic")
depends_on("mom5+deterministic", when="+deterministic")
depends_on("mom5~deterministic", when="~deterministic")
depends_on("libaccessom2+deterministic", when="+deterministic", type="run")
depends_on("libaccessom2~deterministic", when="~deterministic", type="run")
depends_on("cice5+deterministic", when="+deterministic", type="run")
depends_on("cice5~deterministic", when="~deterministic", type="run")
depends_on(
"mom5+deterministic type=ACCESS-OM-BGC",
when="+deterministic",
type="run"
)
depends_on(
"mom5~deterministic type=ACCESS-OM-BGC",
when="~deterministic",
type="run"
)

# There is no need for install() since there is no code.

0 comments on commit c5e1a5c

Please sign in to comment.