From 714cc4e35b91b85090a66bf80906585922ae4a6c Mon Sep 17 00:00:00 2001 From: Martin Bedouret Date: Sat, 9 Dec 2023 15:05:45 -0300 Subject: [PATCH] use default remote docker --- .circleci/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d9040c8c..7773e49bd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,14 +34,14 @@ jobs: working_directory: ~/repo steps: - checkout - # - restore_cache: - # keys: - # # when lock file changes, use increasingly general patterns to restore cache - # - yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }} - # - yarn-packages-v1-{{ .Branch }}- - # - yarn-packages-v1- + - restore_cache: + keys: + # when lock file changes, use increasingly general patterns to restore cache + - yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }} + - yarn-packages-v1-{{ .Branch }}- + - yarn-packages-v1- # Install and save node_modules to cache - - run: yarn install #--cache-folder ~/.cache/yarn + - run: yarn install --cache-folder ~/.cache/yarn - save_cache: paths: - ~/.cache/yarn @@ -49,7 +49,7 @@ jobs: # Build Docker Image # https://circleci.com/docs/2.0/building-docker-images/#overview - setup_remote_docker: # (2) - version: 19.03.13 + version: default docker_layer_caching: false # (3) # build and push Docker image - run: