Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2w
autoicon
Commits
7bc2853a
Commit
7bc2853a
authored
2 years ago
by
Fabian.Jakub
Browse files
Options
Downloads
Patches
Plain Diff
dbg
parent
03b9b657
No related branches found
Branches containing commit
No related tags found
1 merge request
!4
Switching to the advanced configuration method and fixing spack build.
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
conf/real-from-ideal/jobs.yaml
+0
-2
0 additions, 2 deletions
conf/real-from-ideal/jobs.yaml
platforms/common/spack_utils.sh
+12
-13
12 additions, 13 deletions
platforms/common/spack_utils.sh
templates/common/build_icon.sh
+1
-1
1 addition, 1 deletion
templates/common/build_icon.sh
with
13 additions
and
16 deletions
conf/real-from-ideal/jobs.yaml
+
0
−
2
View file @
7bc2853a
...
...
@@ -57,7 +57,6 @@ JOBS:
# EXECUTABLE: /my_python_env/python3
TRANSFER_PROJECT
:
FILE
:
templates/common/transfer_project.sh
EXPORT
:
platforms/common/spack_utils.sh
PLATFORM
:
LOCAL
BUILD_ICON
:
...
...
@@ -65,7 +64,6 @@ JOBS:
DEPENDENCIES
:
TRANSFER_PROJECT
WALLCLOCK
:
01:00
PROCESSORS
:
16
EXPORT
:
platforms/common/spack_utils.sh
BUILD_PYTHON_ENVIRONMENT
:
FILE
:
templates/common/build_python_environment.sh
...
...
This diff is collapsed.
Click to expand it.
platforms/common/spack_utils.sh
+
12
−
13
View file @
7bc2853a
# static settings when using spack
function
spack_env
()
{
export
SPACK_URL
=
%spack.url%
export
SPACK_BRANCH
=
%spack.branch%
export
SPACK_ROOT
=
%spack.root%
export
SPACK_COMPILER
=
%spack.compiler%
export
SPACK_DISABLE_LOCAL_CONFIG
=
%spack.disable_local_config%
if
[
!
-z
"%spack.user_cache_path%"
]
;
then
echo
"setting SPACK_USER_CACHE_PATH=%spack.user_cache_path%"
export
SPACK_USER_CACHE_PATH
=
%spack.user_cache_path%
fi
export
SPACK_SETUP_ENV
=
$SPACK_ROOT
/share/spack/setup-env.sh
}
function
install_spack
()
{
function
_
install_spack
()
{
spack_env
if
[
!
-f
${
SPACK_ROOT
}
]
;
then
...
...
@@ -32,8 +22,17 @@ fi
}
function
load_spack
()
{
export
SPACK_ROOT
=
$1
export
SPACK_URL
=
$2
export
SPACK_BRANCH
=
$3
export
SPACK_COMPILER
=
$4
export
SPACK_DISABLE_LOCAL_CONFIG
=
$5
export
SPACK_USER_CACHE_PATH
=
$6
if
[
!
-z
"
$SPACK_USER_CACHE_PATH
"
]
;
then
echo
"setting SPACK_USER_CACHE_PATH=
$SPACK_USER_CACHE_PATH
"
fi
spack_env
if
[
!
-f
${
SPACK_ROOT
}
]
;
then
install_spack
;
fi
if
[
!
-f
${
SPACK_ROOT
}
]
;
then
_
install_spack
;
fi
.
${
SPACK_SETUP_ENV
}
}
This diff is collapsed.
Click to expand it.
templates/common/build_icon.sh
+
1
−
1
View file @
7bc2853a
...
...
@@ -12,7 +12,7 @@ fi
cd
${
WORKDIR
}
.
${
WORKDIR
}
/proj/platforms/common/spack_utils.sh
load_spack
load_spack
"%spack.root%"
"%spack.url%"
"%spack.branch%"
"%spack.compiler%"
"%spack.disable_local_config%"
"%spack.user_cache_path%"
SPACK_BUILD_ICON
=
%icon.spack_cmd%
if
[
!
-z
$SPACK_BUILD_ICON
]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment