FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
emscripten/Dockerfile at incoming · JavaScriptIOT/emscripten · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaScriptIOT
/
emscripten
Public
forked from
emscripten-core/emscripten
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
emscripten
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (24 loc) · 1.04 KB
Breadcrumbs
emscripten
/
Dockerfile
Copy path
File metadata and controls
27 lines (24 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
For travis
FROM
buildpack-deps:xenial
SHELL
[
"/bin/bash"
,
"-c"
]
ENV
DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8
RUN
mkdir -p /root/emscripten/
COPY
. /root/emscripten/
RUN
cd /root/ \
&& apt-get update \
&& apt-get install -y python python-pip cmake build-essential openjdk-9-jre-headless \
&& pip install --upgrade pip \
&& pip install lit \
&& wget https://github.com/juj/emsdk/archive/master.tar.gz \
&& tar -xf master.tar.gz \
&& pushd emsdk-master \
&& ./emsdk update-tags \
&& ./emsdk install latest \
&& ./emsdk activate latest \
&& popd \
&& echo EMSCRIPTEN_ROOT=
"'/root/emscripten/'"
>> .emscripten \
&& echo BINARYEN_ROOT=
"''"
>> .emscripten
ARG
TEST_TARGET
RUN
export EMSCRIPTEN_BROWSER=0 \
&& python /root/emscripten/tests/runner.py $TEST_TARGET skip:ALL.test_sse1_full skip:ALL.test_sse2_full skip:ALL.test_sse3_full skip:ALL.test_ssse3_full skip:ALL.test_sse4_1_full skip:other.test_native_link_error_message skip:other.test_bad_triple skip:other.test_emcc_v
#
skip:other.test_emcc_v to prevent tool version differences from breaking CI
Back
|
FazBrowse Home
|
New Git URL