1#!/bin/bash
2
3set -e
4
5apt-get install -y --no-install-recommends \
6    curl
7
8# For the Bazel repository
9curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
10
11apt-get install -y --allow-unauthenticated --no-install-recommends \
12    clang-3.5 \
13    clang-3.6 \
14    clang-3.7 \
15    clang-3.8 \
16    g++-4.9 \
17    g++-6 \
18    python \
19    bazel \
20    openjdk-8-jdk \
21    clang-format
22
23pip3 install typed_ast
24