Skip to content

Develop to Master #229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 10, 2025
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
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
Loading