Compare commits

...

2 Commits

Author SHA1 Message Date
Harmen Stoppels
56ca5b253a actually trigger a build... 2024-05-01 18:33:34 +02:00
Harmen Stoppels
09c6243d45 ci: check time of populating misc cache 2024-05-01 18:04:22 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ ci:
before_script-:
- - cat /proc/loadavg || true
- cat /proc/meminfo | grep 'MemTotal\|MemFree' || true
- - spack list --count # ensure that spack's cache is populated
- - time spack list --count # ensure that spack's cache is populated
- - spack env activate --without-view ${SPACK_CONCRETE_ENV_DIR}
- spack compiler list
- if [ -n "$SPACK_BUILD_JOBS" ]; then spack config add "config:build_jobs:$SPACK_BUILD_JOBS"; fi

View File

@@ -122,7 +122,7 @@ class Perl(Package): # Perl doesn't use Autotools, it should subclass Package
extendable = True
if sys.platform != "win32":
depends_on("gmake", type="build")
depends_on("gmake@4.3", type="build")
depends_on("gdbm@:1.23")
# Bind us below gdbm-1.20 due to API change: https://github.com/Perl/perl5/issues/18915
depends_on("gdbm@:1.19", when="@:5.35")