summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml8
-rwxr-xr-xshare/spack/spack-completion.bash2
2 files changed, 6 insertions, 4 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml b/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml
index 3bdbd2086a..a6174c20b3 100644
--- a/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml
+++ b/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml
@@ -12,7 +12,7 @@ default:
- /^pr[\d]+_.*$/
- /^github\/pr[\d]+_.*$/
variables:
- SPACK_BUILDCACHE_DESTINATION: "s3://spack-binaries-prs/${CI_COMMIT_REF_NAME}"
+ SPACK_BUILDCACHE_DESTINATION: "s3://spack-binaries-prs/${CI_COMMIT_REF_NAME}/${SPACK_CI_STACK_NAME}"
SPACK_PIPELINE_TYPE: "spack_pull_request"
SPACK_PRUNE_UNTOUCHED: "True"
@@ -88,7 +88,7 @@ default:
protected-publish:
stage: publish
- extends: [ ".protected-refs" ]
+ extends: [ ".protected" ]
image: "ghcr.io/spack/python-aws-bash:0.0.1"
tags: ["spack", "public", "medium", "aws", "x86_64"]
variables:
@@ -97,7 +97,9 @@ protected-publish:
script:
- . "./share/spack/setup-env.sh"
- spack --version
- - spack buildcache update-index --mirror-url "s3://spack-binaries/${CI_COMMIT_REF_NAME}"
+ - export COPY_SPECS_DIR=${CI_PROJECT_DIR}/jobs_scratch_dir/specs_to_copy
+ - spack buildcache sync --manifest-glob "${COPY_SPECS_DIR}/*.json"
+ - spack buildcache update-index --mirror-url ${SPACK_COPY_BUILDCACHE}
########################################
# TEMPLATE FOR ADDING ANOTHER PIPELINE
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash
index 58e94c036a..bde48d8e97 100755
--- a/share/spack/spack-completion.bash
+++ b/share/spack/spack-completion.bash
@@ -569,7 +569,7 @@ _spack_buildcache_copy() {
}
_spack_buildcache_sync() {
- SPACK_COMPREPLY="-h --help --src-directory --src-mirror-name --src-mirror-url --dest-directory --dest-mirror-name --dest-mirror-url"
+ SPACK_COMPREPLY="-h --help --manifest-glob --src-directory --src-mirror-name --src-mirror-url --dest-directory --dest-mirror-name --dest-mirror-url"
}
_spack_buildcache_update_index() {