Skip to content

Commit 20a3df5

Browse files
committed
core test
1 parent 1a20c84 commit 20a3df5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# For travis
22
FROM ubuntu:16.04
33
SHELL ["/bin/bash", "-c"]
4+
ENV DEBIAN_FRONTEND noninteractive
45

56
COPY . /
67

78
RUN 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

0 commit comments

Comments
 (0)