~vrruiz/pbuilderjenkins/unity-firefox-extension

« back to all changes in this revision

Viewing changes to hooks/dependency_hooks/D10specifictests

  • Committer: Víctor R. Ruiz
  • Date: 2012-08-08 14:57:27 UTC
  • Revision ID: victor.ruiz@canonical.com-20120808145727-qksw0ga6yb971i78
PBuilderjenkins refactorization

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
 
 
2
set -x
3
3
# Not needed for every project, but better than specifying for every of each
4
 
. /etc/lsb-release
5
 
echo "deb http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME universe" >> /etc/apt/sources.list
6
 
echo "deb http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME-updates universe" >> /etc/apt/sources.list
7
 
echo "deb http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME-backports main restricted universe" >> /etc/apt/sources.list
 
4
 
 
5
# Install dependencies
 
6
 
 
7
echo "deb http://archive.ubuntu.com/ubuntu/ precise universe" >> /etc/apt/sources.list
 
8
echo "deb http://archive.ubuntu.com/ubuntu/ precise-updates universe" >> /etc/apt/sources.list
 
9
echo "deb http://archive.ubuntu.com/ubuntu/ precise-backports main restricted universe" >> /etc/apt/sources.list
 
10
 
8
11
apt-get update
9
 
apt-get install -y devscripts cdbs lcov wget sudo check automake build-essential libtool pkg-config libgtest-dev google-mock dbus-test-runner xserver-xorg-dev xserver-xorg-video-dummy
10
 
 
11
 
cd /usr/bin
12
 
wget --no-check-certificate --timeout=10 --tries=3 http://ubuntuone.com/3XSIpokhRr4cjbuoYsaz4A -O gcovr
13
 
chmod +x gcovr
14
 
 
15
 
cd /tmp
16
 
wget --no-check-certificate --timeout=10 --tries=3 http://ubuntuone.com/7ROPr1GHatOCquGUwk6aC6 -O xorg-gtest.tar.bz2
17
 
tar -xjf xorg-gtest.tar.bz2
18
 
 
19
 
if [ -e xorg-gtest ]; then
20
 
  cd xorg-gtest
21
 
  ./autogen.sh
22
 
  ./configure --prefix=/usr
23
 
  make && make install
24
 
fi
 
12
apt-get install -y devscripts cdbs lcov wget sudo check automake build-essential libtool pkg-config libgtest-dev google-mock dbus-test-runner xserver-xorg-dev libexiv2-dev libqt4-dev libqt4-opengl-dev qt4-qmake
 
13
 
 
14