Fix file path
This commit is contained in:
parent
dc6bee5acc
commit
e51b4a1e98
|
@ -28,7 +28,6 @@ jobs:
|
||||||
path: ~/phpunit
|
path: ~/phpunit
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
working_directory: ~/repo
|
|
||||||
docker:
|
docker:
|
||||||
- image: ansible/ansible:ubuntu1604
|
- image: ansible/ansible:ubuntu1604
|
||||||
steps:
|
steps:
|
||||||
|
@ -39,12 +38,12 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
|
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }}
|
key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }}
|
||||||
|
|
||||||
- run ansible-galaxy install -r ansible/requirements.yml
|
- run ansible-galaxy install -r ansible/requirements.yml
|
||||||
|
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }}
|
key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }}
|
||||||
paths:
|
paths:
|
||||||
- '/root/.ansible/roles'
|
- '/root/.ansible/roles'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue