-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use hcl lists for cherry-picks, allow undefined
- Loading branch information
Showing
6 changed files
with
42 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## EIC spack organization and repository, e.g. eic/eic-spack | ||
EICSPACK_ORGREPO="eic/eic-spack" | ||
variable "EICSPACK_ORGREPO" { default = "eic/eic-spack" } | ||
|
||
## EIC spack commit hash or github version, e.g. v0.19.7 | ||
## note: nightly builds could use a branch e.g. releases/v0.19 | ||
EICSPACK_VERSION="c8429aea4cb76c3dc40b301b4a5b375976fce674" | ||
variable "EICSPACK_VERSION" { default = "c8429aea4cb76c3dc40b301b4a5b375976fce674" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Key4HEP spack organization and repository, e.g. key4hep/key4hep-spack | ||
KEY4HEPSPACK_ORGREPO="key4hep/key4hep-spack" | ||
variable "KEY4HEPSPACK_ORGREPO" { default = "key4hep/key4hep-spack" } | ||
|
||
## Key4HEP spack commit hash or github version, e.g. v0.19.7 | ||
## note: nightly builds could use a branch e.g. releases/v0.19 | ||
KEY4HEPSPACK_VERSION="ce50d74dba7c665157cbef63cd5c9cc4d7758f72" | ||
variable "KEY4HEPSPACK_VERSION" { default = "ce50d74dba7c665157cbef63cd5c9cc4d7758f72" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Spack organization and repository, e.g. spack/spack | ||
variable "SPACK_ORGREPO" { default = "spack/spack" } | ||
|
||
## Spack github version, e.g. v0.18.1 or commit hash | ||
## note: nightly builds will use e.g. releases/v0.19 | ||
variable "SPACK_VERSION" { default = "v0.22.0" } | ||
|
||
## Space-separated list of spack cherry-picks | ||
variable "SPACK_CHERRYPICKS" { | ||
default = [ | ||
"09f75ee426a2e05e0543570821582480ff823ba5", # setup-env.sh: if exe contains qemu, use /proc/$$/comm instead | ||
"f6d50f790ee8b123f7775429f6ca6394170e6de9", # gaudi: Add version 38.1 | ||
"63f6e6079aacc99078386e5c8ff06173841b9595", # gaudi: upstream patch when @38.1 for missing #include <list> | ||
"9bcc43c4c158639fa6cb575c6106595a34682081", # protobuf: update hash for patch needed when="@3.4:3.21" | ||
"9f3e45ddbee24aaa7993e575297827e0aed2e6fe", # acts: pass cuda_arch to CMAKE_CUDA_ARCHITECTURES | ||
"85f13442d2a7486daba81fdd9a3b6a1182ba11f6", # Consolidate concretization output for environments | ||
"f73d7d2dce226857cbc774e942454bad2992969e", # dd4hep: cleanup recipe, remove deprecated versions and patches | ||
"cbab451c1a342523ed75e9be1098615a597a9b59", # dd4hep: Add version 1.29 | ||
] | ||
} | ||
## Optional hash table with comma-separated file list | ||
variable "SPACK_CHERRYPICKS_FILES" { | ||
default = [] | ||
} |