File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# For travis
22FROM ubuntu:16.04
33SHELL ["/bin/bash" , "-c" ]
4+ ENV DEBIAN_FRONTEND noninteractive
45
56COPY . /
67
78RUN apt-get update \
8- && apt-get install -y python wget git \
9+ && apt-get install -y python wget git cmake build-essential software-properties-common \
10+ && add-apt-repository ppa:webupd8team/java \
11+ && apt-get update \
12+ && echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-selections \
13+ && echo debconf shared/accepted-oracle-license-v1-1 seen true | debconf-set-selections \
14+ && apt-get install -y oracle-java9-installer \
915 && wget https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz \
1016 && tar -xf emsdk-portable.tar.gz \
1117 && cd emsdk-portable \
@@ -15,4 +21,4 @@ RUN apt-get update \
1521 && source ./emsdk_env.sh \
1622 && cd .. \
1723 && ./emcc --version \
18- && python tests/runner.py test_hello_world
24+ && python tests/runner.py
You can’t perform that action at this time.
0 commit comments