cmake(ci): update

This commit is contained in:
Corentin Le Molgat
2022-06-10 16:59:55 +02:00
parent 0a51097f74
commit 189165d852
2 changed files with 6 additions and 3 deletions

View File

@@ -1,10 +1,11 @@
FROM ortools/cmake:opensuse_swig AS env
# see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-opensuse
RUN zypper refresh \
&& zypper install -y wget tar gzip libicu-devel
# .NET install
RUN mkdir -p /usr/share/dotnet \
# see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-opensuse
RUN zypper refresh \
&& zypper install -y wget tar gzip libicu-devel \
&& mkdir -p /usr/share/dotnet \
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
# see: https://dotnet.microsoft.com/download/dotnet-core/6.0

View File

@@ -1,4 +1,6 @@
FROM ortools/cmake:ubuntu_swig AS env
# Install .NET SDK
# see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu
RUN apt-get update -qq \
&& apt-get install -yq wget apt-transport-https \