Skip to content
Snippets Groups Projects
Commit d23f8166 authored by Jan Tattermusch's avatar Jan Tattermusch Committed by GitHub
Browse files

Merge pull request #8157 from jtattermusch/fix_centos7_distribtest

Fix C# distribtest on centos7
parents 10c57a03 9c6276f5
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,14 @@ RUN rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E03 ...@@ -33,7 +33,14 @@ RUN rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E03
RUN yum-config-manager --add-repo http://download.mono-project.com/repo/centos/ RUN yum-config-manager --add-repo http://download.mono-project.com/repo/centos/
RUN yum install -y mono RUN yum install -y mono
RUN yum install -y nuget
RUN yum install -y unzip RUN yum install -y unzip
# --nogpgcheck because nuget-2.12 package is not signed. # Help mono correctly locate libMonoPosixHelper.so
RUN yum install -y nuget --nogpgcheck # as a workaround for issue https://bugzilla.xamarin.com/show_bug.cgi?id=42820
# The error message you'll get without this workaround:
# ```
# WARNING: /usr/lib/libMonoPosixHelper.so
# WARNING: Unable to read package from path 'Grpc.1.1.0-dev.nupkg'.
# ```
RUN cp /usr/lib64/libMonoPosixHelper.so /usr/lib/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment