File tree 2 files changed +4
-8
lines changed 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -112,19 +112,15 @@ jobs:
112
112
- setup_remote_docker
113
113
- run :
114
114
name : build
115
- # TESTING: using fixed EMSCRIPTEN_VERSION. Will revert this as
116
- # soon as we've published docker image autoamtically using a test
117
- # tag.
118
- # command: docker build --network host --build-arg EMSCRIPTEN_VERSION=${CIRCLE_TAG} --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
119
- command : docker build --network host --build-arg EMSCRIPTEN_VERSION=1.39.18 --tag emscripten/emsdk:1.39.18 ./docker
115
+ command : docker build --network host --build-arg=EMSCRIPTEN_VERSION=${CIRCLE_TAG}-upstream --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
120
116
- run :
121
117
name : tag image
122
- command : docker tag emscripten/emsdk:1.39.18 emscripten/emsdk:latest
118
+ command : docker tag emscripten/emsdk:${CIRCLE_TAG} emscripten/emsdk:latest
123
119
- run :
124
120
name : push image
125
121
command : |
126
122
docker login -u "$DOCKER_USER" -p "$DOCKER_PASS"
127
- docker push emscripten/emsdk:1.39.18
123
+ docker push emscripten/emsdk:${CIRCLE_TAG}
128
124
docker push emscripten/emsdk:latest
129
125
130
126
workflows :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM debian:buster AS stage_build
3
3
# ------------------------------------------------------------------------------
4
4
5
5
# Supports only 1.38.40+, accepts also '-upstream' variants
6
- ARG EMSCRIPTEN_VERSION=1.39.17
6
+ ARG EMSCRIPTEN_VERSION=1.39.18
7
7
8
8
# ------------------------------------------------------------------------------
9
9
You can’t perform that action at this time.
0 commit comments