Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
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
Container Registry
Model registry
Operate
Environments
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
containers
eic_container
Commits
27ebb399
Commit
27ebb399
authored
1 year ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
fix: set extensible target=$arch in site config
parent
5121293a
No related branches found
No related tags found
1 merge request
!571
fix: set extensible target=$arch in site config
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-0
2 additions, 0 deletions
.gitlab-ci.yml
containers/jug/dev.Dockerfile
+3
-3
3 additions, 3 deletions
containers/jug/dev.Dockerfile
with
5 additions
and
3 deletions
.gitlab-ci.yml
+
2
−
0
View file @
27ebb399
...
...
@@ -40,6 +40,7 @@ variables:
0a952f8b7bf6f70009dd5821bccbaf9170c73d07
f050b1cf7835fd31992b020e1061c52294ff7330
a419ffcf501134faed24253ccc83e6c71f9659f9
c3e41153ac92f6ef92414024a8386d4ceec2615c
## Ref: https://github.com/spack/spack/commit/[hash]
## [hash]: [description]
## b5ef5c2eb5145020f9de1bcb964626ce6ac2d02e: geant4: version bumps for Geant4 11.1.0
...
...
@@ -70,6 +71,7 @@ variables:
## 0a952f8b7bf6f70009dd5821bccbaf9170c73d07: docs updates for spack env depfile
## f050b1cf7835fd31992b020e1061c52294ff7330: depfile: variable with all identifiers
## a419ffcf501134faed24253ccc83e6c71f9659f9: osg-ca-certs: igtf link should point to version, not 'current'
## c3e41153ac92f6ef92414024a8386d4ceec2615c: Package requirements: allow single specs in requirement lists
## EIC spack organization and repository, e.g. eic/eic-spack
EICSPACK_ORGREPO
:
"
eic/eic-spack"
...
...
This diff is collapsed.
Click to expand it.
containers/jug/dev.Dockerfile
+
3
−
3
View file @
27ebb399
...
...
@@ -44,12 +44,12 @@ RUN git clone https://github.com/${SPACK_ORGREPO}.git ${SPACK_ROOT} \
SHELL
["docker-shell"]
ARG
jobs=64
RUN
declare
-A
ar
ch
=(
\
RUN
declare
-A
t
ar
get
=(
\
[
"linux/amd64"
]=
"x86_64"
\
[
"linux/arm64"
]=
"aarch64"
\
)
\
&&
ar
ch
=
${
ar
ch
[
${
TARGETPLATFORM
}
]
}
\
&&
spack config
--scope
site add
"packages:all:require:
arch
=
${
ar
ch
}
"
\
&&
t
ar
get
=
${
t
ar
get
[
${
TARGETPLATFORM
}
]
}
\
&&
spack config
--scope
site add
"packages:all:require:
[target
=
${
t
ar
get
}
]"
\
&&
spack config blame packages
\
&&
spack config
--scope
site add
"config:suppress_gpg_warnings:true"
\
&&
spack config
--scope
site add
"config:build_jobs:
${
jobs
}
"
\
...
...
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