Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!937
fix: print more condensed concretization output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: print more condensed concretization output
spack-concretize-quiet
into
master
Overview
1
Commits
3
Pipelines
6
Changes
2
Merged
Wouter Deconinck
requested to merge
spack-concretize-quiet
into
master
11 months ago
Overview
1
Commits
3
Pipelines
6
Changes
2
Expand
This PR avoids printing the entire concretization output.
Edited
10 months ago
by
Wouter Deconinck
0
0
Merge request reports
Compare
master
version 3
68a55593
10 months ago
version 2
1be3b196
11 months ago
version 1
c54f4c6a
11 months ago
master (base)
and
latest version
latest version
573e6d63
3 commits,
10 months ago
version 3
68a55593
2 commits,
10 months ago
version 2
1be3b196
2 commits,
11 months ago
version 1
c54f4c6a
1 commit,
11 months ago
2 files
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
spack-environment/Makefile
+
1
−
1
Options
@@ -25,7 +25,7 @@ $(SPACK_ENV)/push: $(addprefix $(SPACK_ENV)/push/,$($(SPACK_ENV)/SPACK_PACKAGE_I
$(
foreach buildcache,
$(
BUILDCACHE_S3_FINAL
)
,
$(
SPACK
)
buildcache push
--unsigned
$(
buildcache
)
;)
$(
foreach buildcache,
$(
BUILDCACHE_S3_FINAL
)
,
$(
SPACK
)
buildcache update-index
$(
buildcache
)
;)
$(
foreach buildcache,
$(
BUILDCACHE_S3_PROMPT
)
,
$(
SPACK
)
buildcache update-index
$(
buildcache
)
;)
$(
foreach buildcache,
$(
BUILDCACHE_OCI_FINAL
)
,
$(
SPACK
)
buildcache push
--unsigned
--base-image
$(
BUILDCACHE_OCI_BASE_IMAGE
)
$(
buildcache
)
;)
$(
foreach buildcache,
$(
BUILDCACHE_OCI_FINAL
)
,
$(
SPACK
)
buildcache push
--unsigned
--base-image
$(
BUILDCACHE_OCI_BASE_IMAGE
)
$(
buildcache
)
|
grep
-v
"Using cached archive"
;)
$(SPACK_ENV)/push/%
:
$(SPACK_ENV)/install/%
@
mkdir
-p
$(
dir
$@
)
Loading