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
!796
feat: py-onnx-1.15.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: py-onnx-1.15.0
py-onnx-1.13.1
into
master
Overview
0
Commits
6
Pipelines
0
Changes
4
Merged
Wouter Deconinck
requested to merge
py-onnx-1.13.1
into
master
1 year ago
Overview
0
Commits
6
Pipelines
0
Changes
1
Expand
Split off from
!789 (closed)
.
0
0
Merge request reports
Compare
version 9
version 21
b132d1c8
1 year ago
version 20
b0a4b6b9
1 year ago
version 19
8504f4a2
1 year ago
version 18
be73cf71
1 year ago
version 17
128fc2af
1 year ago
version 16
88c9dba1
1 year ago
version 15
0e76fe91
1 year ago
version 14
1394174e
1 year ago
version 13
b84ee601
1 year ago
version 12
d29910d1
1 year ago
version 11
0d421cdf
1 year ago
version 10
aac3c845
1 year ago
version 9
af9d602c
1 year ago
version 8
29d40939
1 year ago
version 7
5abe8621
1 year ago
version 6
9ffb4226
1 year ago
version 5
8131d381
1 year ago
version 4
4e86d7c6
1 year ago
version 3
333fe5d6
1 year ago
version 2
4a11d898
1 year ago
version 1
faa876d4
1 year ago
master (base)
and
version 10
latest version
8e9ec58c
6 commits,
1 year ago
version 21
b132d1c8
6 commits,
1 year ago
version 20
b0a4b6b9
6 commits,
1 year ago
version 19
8504f4a2
14 commits,
1 year ago
version 18
be73cf71
13 commits,
1 year ago
version 17
128fc2af
12 commits,
1 year ago
version 16
88c9dba1
11 commits,
1 year ago
version 15
0e76fe91
10 commits,
1 year ago
version 14
1394174e
9 commits,
1 year ago
version 13
b84ee601
8 commits,
1 year ago
version 12
d29910d1
7 commits,
1 year ago
version 11
0d421cdf
6 commits,
1 year ago
version 10
aac3c845
6 commits,
1 year ago
version 9
af9d602c
6 commits,
1 year ago
version 8
29d40939
5 commits,
1 year ago
version 7
5abe8621
4 commits,
1 year ago
version 6
9ffb4226
3 commits,
1 year ago
version 5
8131d381
3 commits,
1 year ago
version 4
4e86d7c6
3 commits,
1 year ago
version 3
333fe5d6
2 commits,
1 year ago
version 2
4a11d898
1 commit,
1 year ago
version 1
faa876d4
1 commit,
1 year ago
Show latest version
1 file
+
1
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
containers/jug/dev.Dockerfile
+
1
−
9
Options
@@ -156,20 +156,12 @@ ccache --zero-stats
EOF
## Create view at /usr/local
RUN
--mount
=
type
=
cache,target
=
/var/cache/spack
<<
EOF
RUN
<<
EOF
set -e
rm -r /usr/local
spack -e ${SPACK_ENV} env view enable /usr/local
EOF
## Optional, nuke the buildcache after install, before (re)caching
## This is useful when going to completely different containers,
## or intermittently to keep the buildcache step from taking too much time
ARG
CACHE_NUKE=""
RUN
--mount
=
type
=
cache,target
=
/var/cache/spack,sharing
=
locked
<<
EOF
[ -z "${CACHE_NUKE}" ] || rm -rf /var/cache/spack/mirror/${SPACK_VERSION}/build_cache/*
EOF
## Store environment
RUN
<<
EOF
set -e
Loading