Ben Gotow
|
28087d67b8
|
Use a docker image with more linux configuration
FROM circleci/node:lts-jessie
RUN sudo apt-get update
RUN sudo perl -MCPAN -e 'install TAP::Parser'
RUN sudo perl -MCPAN -e 'install XML::Generator'
RUN sudo apt-get -y install lsb-release unzip software-properties-common
RUN lsb_release -a
RUN sudo apt-get -y install build-essential clang execstack fakeroot g++-4.8 git libgnome-keyring-dev libsecret-1-dev xvfb rpm libxext-dev libxtst-dev libxkbfile-dev
ENV DISPLAY=:99
ENV CC=gcc-4.8
ENV CXX=g++-4.8
|
2019-03-17 10:45:03 -07:00 |
|