Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/validate_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ jobs:
python-version: '3.9'
cache: 'pip'

- name: Set up Ansible collections
- name: Set up Ansible and Ansible collections and roles
run: |
sudo update-alternatives --install /usr/bin/python python $(which python3) 1
pip install ansible-core==2.12 ansible-builder pycodestyle voluptuous pylint pyyaml ansible-lint
pip install --upgrade pip
pip install ansible-core==2.12 ansible-builder bindep pycodestyle voluptuous pylint pyyaml ansible-lint
ansible-galaxy collection install -r builder/requirements.yml -p /usr/share/ansible/collections
ansible-galaxy role install -r builder/requirements.yml -p /usr/share/ansible/roles

Expand All @@ -54,7 +55,7 @@ jobs:
--write-pip final_python.txt --write-bindep final_bindep.txt \
/usr/share/ansible/collections
pip install -r final_python.txt
sudo apt-get -y install $(cat final_bindep.txt)
bindep --file final_bindep.txt

- name: Report installed Python dependencies
run: pip freeze
Expand Down
4 changes: 0 additions & 4 deletions bindep.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@

# ansible.posix.patch
patch [platform:rpm]

# community.general.ipa_user
hashlib [platform:rpm]
base64 [platform:rpm]
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace: cloudera
name: cluster
version: 3.4.1
version: 3.4.2

authors: []
readme: README.md
Expand Down