Skip to content

Commit

Permalink
Merge pull request #229 from MonolithProjects/develop
Browse files Browse the repository at this point in the history
Develop to Master
  • Loading branch information
MonolithProjects authored Jan 10, 2025
2 parents 0b0233d + 047ab23 commit 9a6aea9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Do the changes in your own GitHub namespace.
2. Install Molecule and its Docker driver with pip:

```bash
pip install molecule[docker]
pip install "molecule-plugins[docker]"
```

### Running Tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ In this example the Ansible role will uninstall the runner service and unregiste
2. Install Molecule and its Docker driver with pip:

```bash
pip install molecule[docker]
pip install "molecule-plugins[docker]"
```
Sure, here's a basic example of how you might structure a README to explain how to test the `monolithprojects.github_actions_runner` Ansible role with Molecule:

Expand Down
12 changes: 12 additions & 0 deletions tasks/install_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,18 @@
become: true
when: (ansible_facts.distribution == "Ubuntu" and ansible_facts.distribution_major_version == "22")

- name: Install dependencies on Ubuntu Noble systems
ansible.builtin.package:
pkg:
- acl
- liblttng-ust1
- libkrb5-3
- zlib1g
state: present
update_cache: true
become: true
when: (ansible_facts.distribution == "Ubuntu" and ansible_facts.distribution_major_version == "24")

- name: Install dependencies on RHEL/CentOS/Fedora systems
ansible.builtin.package:
name:
Expand Down

0 comments on commit 9a6aea9

Please sign in to comment.