You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 20, 2023. It is now read-only.
* hpc/gitlab-pipelines!52 changed how PACKAGE_{BRANCH,COMMIT,TAG}
variables are handled. Now we can propagate *_COMMIT from the
CoreNEURON spack_setup job to the child BlueConfigs pipeline using a
combination of SPACK_ENV_FILE_URL and SPACK_SETUP_COMMIT_MAPPING_URL.
* New SPACK_PACKAGE_DEPENDENCIES feature lets us avoid some .reference
magic.
* Document SPACK_BRANCH and SPACK_DEPLOYMENT_SUFFIX globals so it's more
convenient to launch pipelines manually.
Copy file name to clipboardExpand all lines: .gitlab-ci.yml
+10-18Lines changed: 10 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,12 @@ variables:
13
13
NMODL_BRANCH:
14
14
description: Branch of NMODL to build CoreNEURON against (NMODL_COMMIT and NMODL_TAG also possible)
15
15
value: master
16
+
SPACK_BRANCH:
17
+
description: Branch of BlueBrain Spack to use for the CI pipeline
18
+
value: develop
19
+
SPACK_DEPLOYMENT_SUFFIX:
20
+
description: Extra path component used when finding deployed software. Set to something like `pulls/1497` use software built for https://github.com/BlueBrain/spack/pull/1497. You probably want to set SPACK_BRANCH to the branch used in the relevant PR if you set this.
21
+
value: ''
16
22
17
23
# Set up Spack
18
24
spack_setup:
@@ -27,25 +33,12 @@ simulation_stack:
27
33
stage: .pre
28
34
# Take advantage of GitHub PR description parsing in the spack_setup job.
0 commit comments