File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
- setup_remote_docker
113
113
- run :
114
114
name : build
115
- command : docker build --network host --build-arg= EMSCRIPTEN_VERSION=${CIRCLE_TAG}-upstream --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
115
+ command : docker build --network host --build-arg EMSCRIPTEN_VERSION=${CIRCLE_TAG} --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
116
116
- run :
117
117
name : tag image
118
118
command : docker tag emscripten/emsdk:${CIRCLE_TAG} emscripten/emsdk:latest
Original file line number Diff line number Diff line change 1
1
FROM debian:buster AS stage_build
2
2
3
- # ------------------------------------------------------------------------------
4
-
5
- # Supports only 1.38.40+, accepts also '-upstream' variants
6
3
ARG EMSCRIPTEN_VERSION=1.39.18
7
-
8
- # ------------------------------------------------------------------------------
9
-
10
4
ENV EMSDK /emsdk
11
5
12
6
# ------------------------------------------------------------------------------
@@ -52,9 +46,10 @@ RUN echo "## Aggresive optimization: Remove debug symbols" \
52
46
&& strip -s `which node` \
53
47
# Tests consume ~80MB disc space
54
48
&& rm -fr ${EMSDK}/upstream/emscripten/tests \
49
+ # Fastcomp is not supported
50
+ && rm -fr ${EMSDK}/upstream/fastcomp \
55
51
# strip out symbols from clang (~extra 50MB disc space)
56
52
&& find ${EMSDK}/upstream/bin -type f -exec strip -s {} + || true \
57
- && find ${EMSDK}/upstream/fastcomp/bin -type f -exec strip -s {} + || true \
58
53
&& echo "## Done"
59
54
60
55
# Generate sanity
You can’t perform that action at this time.
0 commit comments