Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stackinator/templates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ cache-force: mirror-setup
$(warning likely have to start a fresh build (but that's okay, because build caches FTW))
$(warning ================================================================================)
$(SANDBOX) $(MAKE) -C generate-config
$(SANDBOX) $(SPACK) --color=never -C $(STORE)/config buildcache create --rebuild-index --only=package alpscache \
$(SANDBOX) $(SPACK) --color=never -C $(STORE)/config buildcache create --only=package alpscache \
$$($(SANDBOX) $(SPACK_HELPER) -C $(STORE)/config find --format '{name};{/hash};version={version}' \
| grep -v -E '^({% for p in exclude_from_cache %}{{ pipejoiner() }}{{ p }}{% endfor %});'\
| grep -v -E 'version=git\.'\
Expand Down
2 changes: 1 addition & 1 deletion stackinator/templates/Makefile.compilers
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ all:{% for compiler in compilers %} {{ compiler }}/generated/build_cache{% endfo
{% for compiler, config in compilers.items() %}
{{ compiler }}/generated/build_cache: {{ compiler }}/generated/env
{% if push_to_cache %}
$(SPACK) -e ./{{ compiler }} buildcache create --rebuild-index --only=package alpscache \
$(SPACK) -e ./{{ compiler }} buildcache create --only=package alpscache \
$$($(SPACK_HELPER) -e ./{{ compiler }} find --format '{name};{/hash}' \
| grep -v -E '^({% for p in config.exclude_from_cache %}{{ pipejoiner() }}{{ p }}{% endfor %});'\
| cut -d ';' -f2)
Expand Down
2 changes: 1 addition & 1 deletion stackinator/templates/Makefile.environments
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ all:{% for env in environments %} {{ env }}/generated/build_cache{% endfor %}
{% for env, config in environments.items() %}
{{ env }}/generated/build_cache: {{ env }}/generated/view_config
{% if push_to_cache %}
$(SPACK) --color=never -e ./{{ env }} buildcache create --rebuild-index --only=package alpscache \
$(SPACK) --color=never -e ./{{ env }} buildcache create --only=package alpscache \
$$($(SPACK_HELPER) -e ./{{ env }} find --format '{name};{/hash};version={version}' \
| grep -v -E '^({% for p in config.exclude_from_cache %}{{ pipejoiner() }}{{ p }}{% endfor %});'\
| grep -v -E 'version=git\.'\
Expand Down
Loading