diff --git a/.circleci/config.yml b/.circleci/config.yml index b135d4601d82..74d7a031c26a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,8 +23,8 @@ launch_docker_and_build: &launch_docker_and_build # To allow the upstream workflow to access PyTorch/XLA build images, we # need to have them in the ECR. This is not expensive, and only pushes it # if image layers are not present in the repo. - docker tag ${GCR_DOCKER_IMAGE} ${ECR_DOCKER_IMAGE_BASE}:v0.6 >/dev/null - docker push ${ECR_DOCKER_IMAGE_BASE}:v0.6 >/dev/null + docker tag ${GCR_DOCKER_IMAGE} ${ECR_DOCKER_IMAGE_BASE}:v0.7 >/dev/null + docker push ${ECR_DOCKER_IMAGE_BASE}:v0.7 >/dev/null sudo pkill -SIGHUP dockerd # To enable remote caching, use SCCACHE_BUCKET=${SCCACHE_BUCKET} # To disable remote caching, use SCCACHE_BUCKET=${LOCAL_BUCKET} diff --git a/.circleci/docker/Dockerfile b/.circleci/docker/Dockerfile index 16b11ca11a1a..4364cf7648b1 100644 --- a/.circleci/docker/Dockerfile +++ b/.circleci/docker/Dockerfile @@ -88,7 +88,7 @@ ENV RUSTUP_HOME /opt/rustup RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y RUN . $CARGO_HOME/env && \ - git clone --recursive https://github.com/mozilla/sccache.git && \ + git clone --recursive https://github.com/pytorch/sccache.git && \ cd sccache && \ cargo install sccache && \ cd .. && \