Skip to content
Snippets Groups Projects

TST: Add CI infrastructure for integration testing

Merged Florian Spreckelsen requested to merge f-int-tests into dev
2 unresolved threads
4 files
+ 89
5
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 8
1
FROM julia:1.6
RUN echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/buster-backports.list
RUN apt-get update && apt-get install -y git python3-pip
RUN apt-get update
RUN apt-get install -y cmake/buster-backports
RUN apt-get install -y git
RUN apt-get install -y python3-pip
RUN apt-get install -y curl
# Dirty workaround for java not linking to the correct manpage directory (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199)
RUN mkdir -p /usr/share/man/man1
Please register or sign in to reply
RUN apt-get install -y openjdk-11-jdk-headless
RUN pip3 install conan
Loading