diff options
author | Todd Gamblin <gamblin2@llnl.gov> | 2021-08-25 08:39:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 17:39:00 +0200 |
commit | d27e0bff5ac7ea8aae81fb00e362e3a63b47b8f0 (patch) | |
tree | 3d667d785dc5afb515cc4cc850aa8b96950d7da1 /lib | |
parent | fafe1cb7e81e6e6f0b3dc3e4c365f176cc7e1fb6 (diff) | |
download | spack-d27e0bff5ac7ea8aae81fb00e362e3a63b47b8f0.tar.gz spack-d27e0bff5ac7ea8aae81fb00e362e3a63b47b8f0.tar.bz2 spack-d27e0bff5ac7ea8aae81fb00e362e3a63b47b8f0.tar.xz spack-d27e0bff5ac7ea8aae81fb00e362e3a63b47b8f0.zip |
installation: filter padding from binary installs, too (#25600)
#25303 filtered padding from build output, but it's still there in binary install/relocate output,
so our CI logs are still quite long and frequently hit the limit.
- [x] add context handler from #25303 to buildcache installation as well
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/installer.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/spack/spack/installer.py b/lib/spack/spack/installer.py index dc0180feed..8ae2fd410d 100644 --- a/lib/spack/spack/installer.py +++ b/lib/spack/spack/installer.py @@ -367,8 +367,13 @@ def _process_binary_cache_tarball(pkg, binary_spec, explicit, unsigned, pkg_id = package_id(pkg) tty.msg('Extracting {0} from binary cache'.format(pkg_id)) - binary_distribution.extract_tarball(binary_spec, tarball, allow_root=False, - unsigned=unsigned, force=False) + + # don't print long padded paths while extracting/relocating binaries + with spack.util.path.filter_padding(): + binary_distribution.extract_tarball( + binary_spec, tarball, allow_root=False, unsigned=unsigned, force=False + ) + pkg.installed_from_binary_cache = True spack.store.db.add(pkg.spec, spack.store.layout, explicit=explicit) return True |