Skip to content
Snippets Groups Projects

feat: py-onnx-1.15.0

Merged Wouter Deconinck requested to merge py-onnx-1.13.1 into master
Compare and Show latest version
1 file
+ 1
9
Compare changes
  • Side-by-side
  • Inline
@@ -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