Merge "Created Job to schedule LACP script run"
[releng/builder.git] / jenkins-scripts / builder.sh
1 #!/bin/bash
2
3 yum clean all
4 yum install -y python-{tox,virtualenv} xmlstarlet
5
6 # add in mono components for VTN
7 yum install -y yum-utils
8 #The following is needed for the new code in vtn project.
9 #these packages will enable C# compilation.
10 rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
11 #Added the mono tools repository
12 yum-config-manager -q -y --add-repo http://download.mono-project.com/repo/centos6
13 #Install the nuget binary
14 yum install -q -y http://download.mono-project.com/repo/centos/RPMS/noarch/nuget-2.8.3+md58+dhx1-0.noarch.rpm
15 #install the mono toolchain
16 yum -q -y install mono-complete
17
18 # vim: sw=2 ts=2 sts=2 et :