Skip to content

Commit dc74092

Browse files
committed
Revert testing changes
1 parent 618fcf3 commit dc74092

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.circleci/config.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,15 @@ jobs:
112112
- setup_remote_docker
113113
- run:
114114
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
120116
- run:
121117
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
123119
- run:
124120
name: push image
125121
command: |
126122
docker login -u "$DOCKER_USER" -p "$DOCKER_PASS"
127-
docker push emscripten/emsdk:1.39.18
123+
docker push emscripten/emsdk:${CIRCLE_TAG}
128124
docker push emscripten/emsdk:latest
129125
130126
workflows:

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:buster AS stage_build
33
# ------------------------------------------------------------------------------
44

55
# Supports only 1.38.40+, accepts also '-upstream' variants
6-
ARG EMSCRIPTEN_VERSION=1.39.17
6+
ARG EMSCRIPTEN_VERSION=1.39.18
77

88
# ------------------------------------------------------------------------------
99

0 commit comments

Comments
 (0)