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