Skip to content
Snippets Groups Projects
Unverified Commit e31bf1ea authored by Ben Kochie's avatar Ben Kochie Committed by GitHub
Browse files

Merge pull request #234 from cloudalchemy/superq/fix_role_path

Fix role search path
parents dc266fd1 66ee13a8
Branches
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ jobs: ...@@ -15,7 +15,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: pip install ansible ansible-lint yamllint flake8 - run: pip install ansible ansible-lint yamllint flake8
- run: mkdir -p .cache/roles && ln -s ../.. .cache/roles/${CIRCLE_PROJECT_REPONAME} - run: mkdir -p ~/.ansible/roles && ln -s ~/project ~/.ansible/roles/${CIRCLE_PROJECT_REPONAME}
- run: ansible-lint - run: ansible-lint
- run: yamllint . - run: yamllint .
- run: flake8 - run: flake8
...@@ -28,7 +28,7 @@ jobs: ...@@ -28,7 +28,7 @@ jobs:
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
- run: ln -s ~/project ~/${CIRCLE_PROJECT_REPONAME} - run: mkdir -p ~/.ansible/roles && ln -s ~/project ~/.ansible/roles/${CIRCLE_PROJECT_REPONAME}
- run: pip install "ansible~=<<parameters.ansible >>.0" - run: pip install "ansible~=<<parameters.ansible >>.0"
- run: pip install -r test-requirements.txt - run: pip install -r test-requirements.txt
- run: molecule test -s default --destroy always - run: molecule test -s default --destroy always
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment