concretizer: remove ad-hoc rule for external packages (#20193)
fixes #20040 Matching compilers among nodes has been prioritized in #20020. Selection of default variants has been tuned in #20182. With this setup there is no need to have an ad-hoc rule for external packages. On the contrary it should be removed to prefer having default variant values over more external nodes in the DAG.
This commit is contained in:
parent
22d7937c50
commit
1e1a6f4e30
4 changed files with 42 additions and 7 deletions
|
@ -515,13 +515,6 @@ root(Dependency, 1) :- not root(Dependency), node(Dependency).
|
|||
: provider_weight(Provider, Weight), root(Provider)
|
||||
}.
|
||||
|
||||
% For external packages it's more important than for others
|
||||
% to match the compiler with their parent node
|
||||
#maximize{
|
||||
Weight@12,Package
|
||||
: compiler_version_match(Package, Weight), external(Package)
|
||||
}.
|
||||
|
||||
% Try to use default variants or variants that have been set
|
||||
#minimize {
|
||||
Weight@11,Package,Variant,Value
|
||||
|
|
|
@ -371,3 +371,13 @@ def test_config_perms_fail_write_gt_read(self, configure_permissions):
|
|||
spec = Spec('callpath')
|
||||
with pytest.raises(ConfigError):
|
||||
spack.package_prefs.get_package_permissions(spec)
|
||||
|
||||
@pytest.mark.regression('20040')
|
||||
def test_variant_not_flipped_to_pull_externals(self):
|
||||
"""Test that a package doesn't prefer pulling in an
|
||||
external to using the default value of a variant.
|
||||
"""
|
||||
s = Spec('vdefault-or-external-root').concretized()
|
||||
|
||||
assert '~external' in s['vdefault-or-external']
|
||||
assert 'externaltool' not in s
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
class VdefaultOrExternalRoot(Package):
|
||||
"""Test that we don't prefer adding an external to using
|
||||
a default variant value.
|
||||
"""
|
||||
|
||||
homepage = 'https://www.example.org'
|
||||
url = 'https://example.org/files/v3.4/cmake-3.4.3.tar.gz'
|
||||
|
||||
version('1.0', '4cb3ff35b2472aae70f542116d616e63')
|
||||
|
||||
depends_on('vdefault-or-external')
|
|
@ -0,0 +1,17 @@
|
|||
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
class VdefaultOrExternal(Package):
|
||||
"""Test that we don't prefer adding an external to using
|
||||
a default variant value.
|
||||
"""
|
||||
|
||||
homepage = 'https://www.example.org'
|
||||
url = 'https://example.org/files/v3.4/cmake-3.4.3.tar.gz'
|
||||
|
||||
version('1.0', '4cb3ff35b2472aae70f542116d616e63')
|
||||
|
||||
variant('external', default=False, description='nope')
|
||||
|
||||
depends_on('externaltool', when='+external')
|
Loading…
Reference in a new issue