From e51b4a1e98cd256a9bd830391d4aa43f004bfa60 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 3 Jan 2018 20:07:23 +0000 Subject: [PATCH] Fix file path --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 68062a3f..fcc0e9b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,6 @@ jobs: path: ~/phpunit deploy: - working_directory: ~/repo docker: - image: ansible/ansible:ubuntu1604 steps: @@ -39,12 +38,12 @@ jobs: - checkout - restore_cache: - key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }} + key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }} - run ansible-galaxy install -r ansible/requirements.yml - save_cache: - key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }} + key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }} paths: - '/root/.ansible/roles'