Flatten the default store projection
This commit is contained in:
parent
ec8c6e565d
commit
aa10284a0a
@ -19,7 +19,7 @@ config:
|
||||
install_tree:
|
||||
root: $spack/opt/spack
|
||||
projections:
|
||||
all: "{architecture.platform}/{architecture.target}/{name}-{version}-{hash}"
|
||||
all: "{architecture.platform}-{architecture.target}/{name}-{version}-{hash}"
|
||||
# install_tree can include an optional padded length (int or boolean)
|
||||
# default is False (do not pad)
|
||||
# if padded_length is True, Spack will pad as close to the system max path
|
||||
|
@ -330,7 +330,7 @@ that ``--tests`` is passed to ``spack ci rebuild`` as part of the
|
||||
- spack --version
|
||||
- cd ${SPACK_CONCRETE_ENV_DIR}
|
||||
- spack env activate --without-view .
|
||||
- spack config add "config:install_tree:projections:${SPACK_JOB_SPEC_PKG_NAME}:'morepadding/{architecture.platform}/{architecture.target}/{name}-{version}-{hash}'"
|
||||
- spack config add "config:install_tree:projections:${SPACK_JOB_SPEC_PKG_NAME}:'morepadding/{architecture.platform}-{architecture.target}/{name}-{version}-{hash}'"
|
||||
- mkdir -p ${SPACK_ARTIFACTS_ROOT}/user_data
|
||||
- if [[ -r /mnt/key/intermediate_ci_signing_key.gpg ]]; then spack gpg trust /mnt/key/intermediate_ci_signing_key.gpg; fi
|
||||
- if [[ -r /mnt/key/spack_public_key.gpg ]]; then spack gpg trust /mnt/key/spack_public_key.gpg; fi
|
||||
|
@ -21,7 +21,7 @@
|
||||
from spack.error import SpackError
|
||||
|
||||
default_projections = {
|
||||
"all": "{architecture.platform}/{architecture.target}/{name}-{version}-{hash}"
|
||||
"all": "{architecture.platform}-{architecture.target}/{name}-{version}-{hash}"
|
||||
}
|
||||
|
||||
|
||||
|
@ -1226,7 +1226,7 @@ def test_default_install_tree(monkeypatch, default_config):
|
||||
s = spack.spec.Spec("nonexistent@x.y.z arch=foo-bar-baz")
|
||||
monkeypatch.setattr(s, "dag_hash", lambda length: "abc123")
|
||||
_, _, projections = spack.store.parse_install_tree(spack.config.get("config"))
|
||||
assert s.format(projections["all"]) == "foo/baz/nonexistent-x.y.z-abc123"
|
||||
assert s.format(projections["all"]) == "foo-baz/nonexistent-x.y.z-abc123"
|
||||
|
||||
|
||||
def test_local_config_can_be_disabled(working_env):
|
||||
|
@ -34,7 +34,7 @@ def test_yaml_directory_layout_parameters(tmpdir, default_mock_concretization):
|
||||
layout_default = DirectoryLayout(str(tmpdir))
|
||||
path_default = layout_default.relative_path_for_spec(spec)
|
||||
assert path_default == str(
|
||||
Path(spec.format("{architecture.platform}/{architecture.target}/{name}-{version}-{hash}"))
|
||||
Path(spec.format("{architecture.platform}-{architecture.target}/{name}-{version}-{hash}"))
|
||||
)
|
||||
|
||||
# Test hash_length parameter works correctly
|
||||
@ -47,7 +47,7 @@ def test_yaml_directory_layout_parameters(tmpdir, default_mock_concretization):
|
||||
assert len(path_default) - len(path_7) == 25
|
||||
|
||||
# Test path_scheme
|
||||
arch, compiler, package7 = path_7.split(os.sep)
|
||||
arch, package7 = path_7.split(os.sep)
|
||||
projections_package7 = {"all": "{name}-{version}-{hash:7}"}
|
||||
layout_package7 = DirectoryLayout(str(tmpdir), projections=projections_package7)
|
||||
path_package7 = layout_package7.relative_path_for_spec(spec)
|
||||
|
@ -6,4 +6,4 @@ config:
|
||||
root: /home/software/spack
|
||||
padded_length: 256
|
||||
projections:
|
||||
all: "{architecture.platform}/{architecture.target}/{name}-{version}-{hash}"
|
||||
all: "{architecture.platform}-{architecture.target}/{name}-{version}-{hash}"
|
||||
|
@ -4,7 +4,7 @@ ci:
|
||||
before_script-:
|
||||
# Test package relocation on linux using a modified prefix
|
||||
# This is not well supported on MacOS (https://github.com/spack/spack/issues/37162)
|
||||
- - spack config add "config:install_tree:projections:${SPACK_JOB_SPEC_PKG_NAME}:'morepadding/{architecture.platform}/{architecture.target}/{name}-{version}-{hash}'"
|
||||
- - spack config add "config:install_tree:projections:${SPACK_JOB_SPEC_PKG_NAME}:'morepadding/{architecture.platform}-{architecture.target}/{name}-{version}-{hash}'"
|
||||
- match_behavior: first
|
||||
submapping:
|
||||
- match:
|
||||
|
Loading…
Reference in New Issue
Block a user