#!/usr/bin/env bash set -exuo pipefail export LANG=C.UTF-8 export DEBIAN_FRONTEND=noninteractive # Add system dependencies not present in the ubuntu package registry here. # Please add a comment stating which haskell packages needs it. # odbc # TODO: See if we can fix this... # E: Failed to fetch https://packages.microsoft.com/debian/9/prod/pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb 404 Not Found # # curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - # curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list # apt-get update # ACCEPT_EULA=Y apt-get install msodbcsql17 -y # llvm for llvm-hs curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" apt-get update apt-get install llvm-9-dev -y locale-gen en_US.UTF-8 # Buggy versions of ld.bfd fail to link some Haskell packages: # https://sourceware.org/bugzilla/show_bug.cgi?id=17689. Gold is # faster anyways and uses less RAM. update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 # GHC requires a specific LLVM version on the system PATH for its LLVM backend. # This version is tracked here: # https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing # # GHC 8.10 requires LLVM 9 tools (?) (specifically, llc-9 and opt-9). update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-9" 50 update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-9" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) curl -sL https://deb.nodesource.com/setup_10.x | bash - apt-get install -y nodejs # install ocilib dependencies then build and install ocilib cd /tmp \ && wget https://storage.googleapis.com/oracle.fpinsight.com/instantClient/oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ && dpkg -i oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ && rm -f oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ && wget https://storage.googleapis.com/oracle.fpinsight.com/instantClient/oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ && dpkg -i oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ && rm -f oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ && wget https://github.com/vrogier/ocilib/archive/v4.3.2.tar.gz \ && tar xvf v4.3.2.tar.gz \ && cd /tmp/ocilib-4.3.2 \ && ./configure --with-oracle-import=linkage \ --with-oracle-charset=ansi \ --with-oracle-headers-path=/usr/include/oracle/12.1/client64 \ --with-oracle-lib-path=/usr/lib/oracle/12.1/client64/lib \ && make \ && make install \ && cd \ && rm -rf /tmp/ocilib-4.3.2 \ && echo "/usr/local/lib" > /etc/ld.so.conf.d/usr-local.conf \ && echo "/usr/lib/oracle/12.1/client64/lib" > /etc/ld.so.conf.d/oracle-client.conf \ && ldconfig # Add JDK to system paths. echo "/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/" > /etc/ld.so.conf.d/openjdk.conf \ && ldconfig # Install erlang/otp platform and its dependencies ERLANG_DEB_FILE="esl-erlang_21.1-1~ubuntu~bionic_amd64.deb" pushd /tmp \ && wget https://packages.erlang-solutions.com/erlang/debian/pool/${ERLANG_DEB_FILE} \ && (dpkg -i ${ERLANG_DEB_FILE}; apt-get install -yf) \ && rm ${ERLANG_DEB_FILE} \ && popd # Install the TensorFlow C API. curl https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.1.0.tar.gz > libtensorflow.tar.gz \ && sudo tar zxf libtensorflow.tar.gz -C /usr \ && rm libtensorflow.tar.gz \ && ldconfig # NOTE: This cuda pubkey is no longer available. # # NOTE: also update Dockerfile when cuda version changes # # Install CUDA toolkit # The current version can be found at: https://developer.nvidia.com/cuda-downloads # # CUDA_PKG=10.0.130-1 # CUDA_VER=10.0 # CUDA_APT=10-0 # #pushd /tmp \ # && wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_${CUDA_PKG}_amd64.deb \ # && apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub \ # && dpkg -i cuda-repo-ubuntu1804_${CUDA_PKG}_amd64.deb \ # && apt-get update -qq \ # && apt-get install -y cuda-drivers cuda-core-${CUDA_APT} cuda-cudart-dev-${CUDA_APT} cuda-cufft-dev-${CUDA_APT} cuda-cublas-dev-${CUDA_APT} cuda-cusparse-dev-${CUDA_APT} cuda-cusolver-dev-${CUDA_APT} \ # && rm cuda-repo-ubuntu1804_${CUDA_PKG}_amd64.deb \ # && export CUDA_PATH=/usr/local/cuda-${CUDA_VER} \ # && export LD_LIBRARY_PATH=${CUDA_PATH}/nvvm/lib64:${LD_LIBRARY_PATH+x} \ # && export LD_LIBRARY_PATH=${CUDA_PATH}/lib64:${LD_LIBRARY_PATH} \ # && export PATH=${CUDA_PATH}/bin:${PATH} \ # && popd # # non-free repo for mediabus-fdk-aac #apt-add-repository multiverse \ # && apt-get update \ # && apt-get install -y nvidia-cuda-dev # # Update library search paths #echo /usr/local/cuda-10.0/lib64 > /etc/ld.so.conf.d/cuda.conf #echo /usr/local/cuda-10.0/nvvm/lib64 >> /etc/ld.so.conf.d/cuda.conf export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-9/lib; export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-9/include; # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html PROTOC_ZIP=protoc-3.3.0-linux-x86_64.zip curl -OL https://github.com/google/protobuf/releases/download/v3.3.0/$PROTOC_ZIP sudo unzip -o $PROTOC_ZIP -d /usr bin/protoc rm -f $PROTOC_ZIP echo /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server > /etc/ld.so.conf.d/java.conf echo /usr/lib/llvm-3.7/lib > /etc/ld.so.conf.d/llvm.conf ldconfig # Install librdkafka (Apache Kafka C/C++ library) wget -qO - https://packages.confluent.io/deb/5.2/archive.key | apt-key add - add-apt-repository "deb https://packages.confluent.io/deb/5.2 stable main" apt-get update && apt install -y librdkafka-dev Z3_VER=4.8.8 ( cd /usr/local/ \ && wget https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VER}/z3-${Z3_VER}-x64-ubuntu-16.04.zip \ && unzip z3-${Z3_VER}-x64-ubuntu-16.04.zip \ && rm z3-${Z3_VER}-x64-ubuntu-16.04.zip \ && ln -s /usr/local/z3-${Z3_VER}-x64-ubuntu-16.04/bin/z3 /usr/bin/z3 ) LIBJWT_VER=1.12.1 ( pushd /tmp \ && wget https://github.com/benmcollins/libjwt/archive/v${LIBJWT_VER}.zip \ && unzip v${LIBJWT_VER}.zip \ && pushd libjwt-${LIBJWT_VER} \ && autoreconf -fiv \ && ./configure --disable-valgrind --disable-doxygen-doc --prefix /usr \ && make \ && sudo make install \ && popd \ && popd )