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
Merge requests
!805
fix: use GitHub API link for juggler (handles slash branch names)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: use GitHub API link for juggler (handles slash branch names)
wdconinc-master-patch-46668
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
wdconinc-master-patch-46668
into
master
1 year ago
Overview
2
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
60320c8c
1 year ago
master (base)
and
version 1
latest version
23d6e906
1 commit,
1 year ago
version 1
60320c8c
1 commit,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
containers/jug/dev.Dockerfile
+
2
−
2
Options
@@ -127,7 +127,7 @@ FROM spack as builder
COPY
--from=spack-environment . /opt/spack-environment/
ARG
ENV=dev
ARG
JUGGLER_VERSION="main"
ADD
https://
eicweb.phy.anl.gov/api/v4/projects/EIC%2Fjuggler/repository
/commits/${JUGGLER_VERSION} /tmp/juggler.json
ADD
https://
api.github.com/repos/eic/juggler
/commits/${JUGGLER_VERSION} /tmp/juggler.json
ARG
EICRECON_VERSION="main"
ADD
https://api.github.com/repos/eic/eicrecon/commits/${EICRECON_VERSION} /tmp/eicrecon.json
ENV
SPACK_ENV=/opt/spack-environment/${ENV}
@@ -138,7 +138,7 @@ RUN --mount=type=cache,target=/ccache,id=${TARGETPLATFORM} \
set -e
export CCACHE_DIR=/ccache
find /var/cache/spack/blobs/sha256/ -atime +7 -delete
JUGGLER_VERSION=$(jq -r .
id
/tmp/juggler.json)
JUGGLER_VERSION=$(jq -r .
sha
/tmp/juggler.json)
EICRECON_VERSION=$(jq -r .sha /tmp/eicrecon.json)
spack buildcache update-index eics3rw
spack env activate --dir ${SPACK_ENV}
Loading