Skip to content
Snippets Groups Projects

Add awkward-array package

Closed Sylvester Joosten requested to merge v4.0-acadia-stable into master
14 files
+ 484
248
Compare changes
  • Side-by-side
  • Inline
Files
14
@@ -18,6 +18,8 @@ ENV CLICOLOR_FORCE=1 \
@@ -18,6 +18,8 @@ ENV CLICOLOR_FORCE=1 \
## Install additional packages. Remove the auto-cleanup functionality
## Install additional packages. Remove the auto-cleanup functionality
## for docker, as we're using the new buildkit cache instead.
## for docker, as we're using the new buildkit cache instead.
## We also install gitlab-runner, from the buster package (as bullseye is not available atm)
## We also install gitlab-runner, from the buster package (as bullseye is not available atm)
 
## TODO: libyaml-cpp-dev is a dependency for afterburner. We can probably remove
 
## this once afterburner is added to spack
RUN --mount=type=cache,target=/var/cache/apt \
RUN --mount=type=cache,target=/var/cache/apt \
rm -f /etc/apt/apt.conf.d/docker-clean \
rm -f /etc/apt/apt.conf.d/docker-clean \
&& apt-get -yqq update \
&& apt-get -yqq update \
@@ -28,6 +30,7 @@ RUN --mount=type=cache,target=/var/cache/apt \
@@ -28,6 +30,7 @@ RUN --mount=type=cache,target=/var/cache/apt \
build-essential \
build-essential \
g++-10 \
g++-10 \
gcc-10 \
gcc-10 \
 
gdb \
gfortran-10 \
gfortran-10 \
git \
git \
gnupg2 \
gnupg2 \
@@ -47,8 +50,10 @@ RUN --mount=type=cache,target=/var/cache/apt \
@@ -47,8 +50,10 @@ RUN --mount=type=cache,target=/var/cache/apt \
gv \
gv \
poppler-utils \
poppler-utils \
parallel \
parallel \
 
bc \
time \
time \
valgrind \
valgrind \
 
libyaml-cpp-dev \
&& localedef -i en_US -f UTF-8 en_US.UTF-8 \
&& localedef -i en_US -f UTF-8 en_US.UTF-8 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 100 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 100 \
Loading