Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi8080 committed Jul 9, 2024
1 parent 7f81f9b commit 2692249
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,29 @@ jobs:
- name: Install molecule
run: pip3 install ansible molecule molecule-docker

- name: Run molecule
run: molecule converge || true
- name: Run molecule create
run: molecule create
env:
MOLECULE_DISTRO: ${{ matrix.distro.image }}
MOLECULE_INSTANCE_NAME: ${{ matrix.distro.instance }}
MOLECULE_BEATS_FLAVOR: ${{ matrix.beats_flavor }}

- name: Check docker
run: docker --version && docker ps -a

- name: Run molecule prepare
run: molecule prepare
env:
MOLECULE_DISTRO: ${{ matrix.distro.image }}
MOLECULE_INSTANCE_NAME: ${{ matrix.distro.instance }}
MOLECULE_BEATS_FLAVOR: ${{ matrix.beats_flavor }}

- name: Check docker
run: docker --version && docker ps -a
- name: Check docker__
run: docker --version && docker ps -a

- name: Run molecule
run: molecule converge
env:
MOLECULE_DISTRO: ${{ matrix.distro.image }}
MOLECULE_INSTANCE_NAME: ${{ matrix.distro.instance }}
MOLECULE_BEATS_FLAVOR: ${{ matrix.beats_flavor }}
3 changes: 3 additions & 0 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ provisioner:
IN_MOLECULE: 'true'
scenario:
name: default
create_sequence:
- depencency
- create
verifier:
name: ansible

0 comments on commit 2692249

Please sign in to comment.