Skip to content

Commit

Permalink
fix: test stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jseniuk committed May 31, 2024
1 parent 8440904 commit 269104e
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 16 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ on:
pull_request:
branches:
- master
schedule:
- cron: '5 4 */14 * *' # Twice / month, at 4:05 AM.

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: molecule
Expand All @@ -26,21 +29,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
image:
- geerlingguy/docker-ubuntu2004-ansible:latest
- geerlingguy/docker-ubuntu1804-ansible:latest
- geerlingguy/docker-ubuntu1604-ansible:latest
- geerlingguy/docker-centos8-ansible:latest
- geerlingguy/docker-centos7-ansible:latest
config:
- image: "ubuntu"
tag: "latest" # latest == noble, as of this writing.
- image: "ubuntu"
tag: "jammy"
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/molecule-action@2.6.3
uses: robertdebock/molecule-action@6.0.1
with:
image: "${{ matrix.image }}"
options: parallel
env:
MOLECULE_DOCKER_IMAGE: "${{ matrix.image }}"
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
4 changes: 4 additions & 0 deletions handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
service:
name: rsyslog
state: restarted

- name: ards systemctl daemon-reexec
ansible.builtin.systemd:
daemon_reexec: true
9 changes: 6 additions & 3 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
role_name_check: 1
dependency:
name: galaxy
options:
role-file: requirements.yml
requirements-file: requirements.yml
driver:
name: docker
platforms:
- name: instance
image: ${MOLECULE_DOCKER_IMAGE:-'geerlingguy/docker-ubuntu2004-ansible:latest'}
command: ${MOLECULE_DOCKER_COMMAND:-""}
- name: "drupal-syslog-${image:-ubuntu}-${tag:-latest}${TOX_ENVNAME}"
image: "${namespace:-robertdebock}/${image:-ubuntu}:${tag:-latest}"
command: /sbin/init
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
privileged: true
Expand Down
6 changes: 6 additions & 0 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Bootstrap
hosts: all
become: true
gather_facts: false
roles:
- role: robertdebock.bootstrap
3 changes: 3 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
roles:
- name: robertdebock.bootstrap

0 comments on commit 269104e

Please sign in to comment.