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
Compare revisions
b5a114108bee83138e818fd7b81b9f207c6f1a60 to a403c6841b1a9b00c5ea27dd1aa6af601552f96f
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
containers/eic_container
Select target project
No results found
a403c6841b1a9b00c5ea27dd1aa6af601552f96f
Select Git revision
Swap
Target
containers/eic_container
Select target project
containers/eic_container
wdconinc/eic_container
tooba/eic_container
3 results
b5a114108bee83138e818fd7b81b9f207c6f1a60
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
feat: make -j ${jobs}
· c6627858
Wouter Deconinck
authored
1 year ago
c6627858
fix: actually print day in date, not month (Apr-28 instead of Apr-4)
· a403c684
Wouter Deconinck
authored
1 year ago
a403c684
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
containers/debian/bashrc
+1
-1
1 addition, 1 deletion
containers/debian/bashrc
containers/jug/dev.Dockerfile
+7
-3
7 additions, 3 deletions
containers/jug/dev.Dockerfile
with
8 additions
and
4 deletions
containers/debian/bashrc
View file @
a403c684
...
...
@@ -394,7 +394,7 @@ function __setprompt
fi
# Date
PS1+
=
"
\[
${
DARKGRAY
}
\]
(
\[
${
CYAN
}
\]\$
(date +%a)
$(
date
+%b-
'%-
m
'
)
"
# Date
PS1+
=
"
\[
${
DARKGRAY
}
\]
(
\[
${
CYAN
}
\]\$
(date +%a)
$(
date
+%b-
'%-
d
'
)
"
# Date
PS1+
=
"
${
BLUE
}
$(
date
+
'%-I'
:%M:%S%P
)
\[
${
DARKGRAY
}
\]
)-"
# Time
# CPU
...
...
This diff is collapsed.
Click to expand it.
containers/jug/dev.Dockerfile
View file @
a403c684
...
...
@@ -44,6 +44,7 @@ RUN git clone https://github.com/${SPACK_ORGREPO}.git ${SPACK_ROOT} \
SHELL
["docker-shell"]
ARG
jobs=64
RUN
declare
-A
arch
=(
\
[
"linux/amd64"
]=
"x86_64"
\
[
"linux/arm64"
]=
"aarch64"
\
...
...
@@ -52,9 +53,11 @@ RUN declare -A arch=( \
&&
spack config
--scope
site add
"packages:all:require:arch=
${
arch
}
"
\
&&
spack config blame packages
\
&&
spack config
--scope
site add
"config:suppress_gpg_warnings:true"
\
&&
spack config
--scope
site add
"config:build_jobs:
64"
\
&&
spack config
--scope
site add
"config:build_jobs:
${
jobs
}
"
\
&&
spack config
--scope
site add
"config:install_tree:root:/opt/software"
\
&&
spack config blame config
&&
spack config blame config
\
&&
spack compiler find
--scope
site
\
&&
spack config blame compilers
## Setup spack buildcache mirrors, including an internal
## spack mirror using the docker build cache, and
...
...
@@ -104,7 +107,8 @@ RUN --mount=type=cache,target=/var/cache/spack-mirror,sharing=locked \
cd
/opt/spack-environment
\
&&
source
$SPACK_ROOT
/share/spack/setup-env.sh
\
&&
spack
env
activate
--dir
/opt/spack-environment/
${
ENV
}
\
&&
make
-C
/opt/spack-environment
SPACK_ENV
=
${
ENV
}
\
&&
make
--jobs
${
jobs
}
--directory
/opt/spack-environment
\
SPACK_ENV
=
${
ENV
}
\
BUILDCACHE_DIR
=
/var/cache/spack-mirror
# FIXME disabled S3 buildcache until multipart upload fixed
# \
...
...
This diff is collapsed.
Click to expand it.