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