ci: install gdc and ldc

This commit is contained in:
FFY00 2018-08-26 00:54:30 +01:00
parent 124cedde38
commit 946c96e24f
No known key found for this signature in database
GPG Key ID: F893C674816AA95D
1 changed files with 5 additions and 1 deletions

View File

@ -13,9 +13,13 @@ RUN apt-get -y update && apt-get -y upgrade \
&& apt-get -y install python-dev \
&& apt-get -y install libomp-dev openssh-client \
&& apt-get -y install -y clang libclang-dev llvm-dev flex \
&& apt-get -y install gdc ldc \
&& python3 -m pip install hotdoc codecov \
&& dub fetch urld \
&& dub build urld --compiler=gdc
&& dub build urld --compiler=gdc \
&& dub fetch dubtestproject \
&& dub build dubtestproject:test1 --compiler=ldc2 \
&& dub build dubtestproject:test2 --compiler=ldc2
# OpenSSH client is needed to run openmpi binaries.