diff options
Diffstat (limited to 'gfx/wr/ci-scripts/docker-image/setup.sh')
-rwxr-xr-x | gfx/wr/ci-scripts/docker-image/setup.sh | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gfx/wr/ci-scripts/docker-image/setup.sh b/gfx/wr/ci-scripts/docker-image/setup.sh new file mode 100755 index 0000000000..11adb1c269 --- /dev/null +++ b/gfx/wr/ci-scripts/docker-image/setup.sh @@ -0,0 +1,44 @@ +#!/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 \ + openjdk-8-jdk \ + pkg-config \ + python \ + python-mako \ + python-pip \ + python-setuptools \ + python-voluptuous \ + python-yaml \ + python3-pip \ + python3-mako \ + software-properties-common \ + clang + +# Other stuff we need +pip install servo-tidy==0.3.0 |