Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dedal
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
dedal
Merge requests
!5
Methods for caching; CLI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Methods for caching; CLI
esd-concretize-buildcache
into
dev
Overview
0
Commits
21
Pipelines
13
Changes
24
Merged
Adrian Ciu
requested to merge
esd-concretize-buildcache
into
dev
1 month ago
Overview
0
Commits
21
Pipelines
13
Changes
24
Expand
Implemented concretization with cache and installation with cache
Implemented methods for spack create cache
Implemented CLI for Dedal
0
0
Merge request reports
Compare
dev
version 14
688ec8ed
1 month ago
version 13
ac444920
1 month ago
version 12
ac444920
1 month ago
version 11
1a509714
1 month ago
version 10
3a603518
1 month ago
version 9
8e14f7e1
1 month ago
version 8
1a12daaa
1 month ago
version 7
ef6e8f6f
1 month ago
version 6
848d99fd
1 month ago
version 5
69d3112c
1 month ago
version 4
93c434e8
1 month ago
version 3
6b6c2ac7
1 month ago
version 2
eb208063
1 month ago
version 1
d05535b5
1 month ago
dev (base)
and
latest version
latest version
688ec8ed
21 commits,
1 month ago
version 14
688ec8ed
21 commits,
1 month ago
version 13
ac444920
22 commits,
1 month ago
version 12
ac444920
22 commits,
1 month ago
version 11
1a509714
22 commits,
1 month ago
version 10
3a603518
22 commits,
1 month ago
version 9
8e14f7e1
22 commits,
1 month ago
version 8
1a12daaa
22 commits,
1 month ago
version 7
ef6e8f6f
22 commits,
1 month ago
version 6
848d99fd
22 commits,
1 month ago
version 5
69d3112c
22 commits,
1 month ago
version 4
93c434e8
22 commits,
1 month ago
version 3
6b6c2ac7
22 commits,
1 month ago
version 2
eb208063
22 commits,
1 month ago
version 1
d05535b5
22 commits,
1 month ago
24 files
+
785
−
92
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
dedal/bll/SpackManager.py
0 → 100644
+
35
−
0
Options
import
os
from
dedal.model.SpackDescriptor
import
SpackDescriptor
from
dedal.spack_factory.SpackOperationCreator
import
SpackOperationCreator
from
dedal.configuration.SpackConfig
import
SpackConfig
class
SpackManager
:
"""
This class defines the logic used by the CLI
"""
def
__init__
(
self
,
spack_config
:
SpackConfig
=
None
,
use_cache
=
False
):
self
.
_spack_config
=
spack_config
self
.
_use_cache
=
use_cache
def
_get_spack_operation
(
self
):
return
SpackOperationCreator
.
get_spack_operator
(
self
.
_spack_config
,
self
.
_use_cache
)
def
install_spack
(
self
,
version
:
str
,
bashrc_path
=
os
.
path
.
expanduser
(
"
~/.bashrc
"
)):
self
.
_get_spack_operation
().
install_spack
(
spack_version
=
f
'
v
{
version
}
'
,
bashrc_path
=
bashrc_path
)
def
add_spack_repo
(
self
,
repo
:
SpackDescriptor
):
"""
After additional repo was added, setup_spack_env must be invoked
"""
self
.
_spack_config
.
add_repo
(
repo
)
def
setup_spack_env
(
self
):
self
.
_get_spack_operation
().
setup_spack_env
()
def
concretize_spack_env
(
self
):
self
.
_get_spack_operation
().
concretize_spack_env
()
def
install_packages
(
self
,
jobs
:
int
):
self
.
_get_spack_operation
().
install_packages
(
jobs
=
jobs
)