blob: ccf36d1be164139aced3a9d5e6a2663ad3a67f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. */
set -o errexit
set -o nounset
set -o pipefail
set -o xtrace
test "$(whoami)" == 'root'
# Install stuff we need
apt-get -y update
apt-get install -y \
bison \
bzip2 \
cmake \
curl \
flex \
gcc \
git \
g++ \
libfontconfig1-dev \
libgl1-mesa-dev \
libx11-dev \
llvm-dev \
ninja-build \
pkg-config \
python3-pip \
python3-six \
python3-setuptools \
python3-mako \
software-properties-common \
clang
# some reftests fail with freetype >= 2.10, so downgrade to the version in
# Debian buster. See bug 1804782.
apt-get -y remove libfreetype-dev
curl -LO http://snapshot.debian.org/archive/debian/20220718T031307Z/pool/main/f/freetype/libfreetype6_2.9.1-3%2Bdeb10u3_amd64.deb
curl -LO http://snapshot.debian.org/archive/debian/20220718T031307Z/pool/main/f/freetype/libfreetype6-dev_2.9.1-3%2Bdeb10u3_amd64.deb
dpkg -i libfreetype6*.deb
rm libfreetype6*.deb
# Other stuff we need
# Normally, we'd
# pip3 install servo-tidy==0.3.0
# but the last version of servo-tidy published on pypi doesn't have the
# python3 fixes that are in the servo repo.
git clone -n https://github.com/servo/servo/
git -C servo checkout 65a4d1646da46c37fe748add6dcf24b62ebb602a
pip3 install servo/python/tidy
rm -rf servo
|