From 3e1c7f0be22106186c5c1710318532b925f5f516 Mon Sep 17 00:00:00 2001 From: Shota Yamazaki Date: Sat, 13 Jul 2019 07:25:17 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Fix:=20=E5=85=B1=E6=9C=89=E3=81=99=E3=82=8B?= =?UTF-8?q?docker=E3=81=AE=E8=A8=AD=E5=AE=9A=E3=82=92executor=E3=81=A8?= =?UTF-8?q?=E3=81=97=E3=81=A6=E3=81=BE=E3=81=A8=E3=82=81=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 818df61..9d4ce12 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,8 +1,12 @@ version: 2.1 +executors: + elaborate-base: + docker: + - images: shotayamazaki/cci-docker-primary:latest + jobs: test: - docker: - - image: shotayamazaki/cci-docker-primary:latest + executor: elaborate-base steps: - checkout - restore_cache: @@ -34,8 +38,7 @@ jobs: path: /tmp/test-results/eslint deploy: - docker: - - image: shotayamazaki/cci-docker-primary:latest + executor: elaborate-base steps: - checkout - restore_cache: From 70a4b2ea063984283b104547cd4b31cbde581cab Mon Sep 17 00:00:00 2001 From: Shota Yamazaki Date: Sat, 13 Jul 2019 07:28:58 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Fix:=20docker=E5=91=A8=E3=82=8A=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d4ce12..07929bc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 executors: elaborate-base: docker: - - images: shotayamazaki/cci-docker-primary:latest + - image: shotayamazaki/cci-docker-primary:latest jobs: test: