1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
Daniele Tricoli c63802b7fe Add test step
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2021-09-14 03:00:50 +02:00
Daniele Tricoli 479971f73d Add missing space around variable 2021-09-14 02:57:07 +02:00
3 changed files with 17 additions and 2 deletions

View file

@ -8,3 +8,18 @@ steps:
image: quay.io/ansible/toolset:3.5.0
commands:
- molecule lint
- name: test
image: quay.io/ansible/toolset:3.5.0
volumes:
- name: docker
path: /var/run/docker.sock
environment:
MOLECULE_NO_LOG: false
commands:
- molecule test
volumes:
- name: docker
host:
path: /var/run/docker.sock

View file

@ -5,7 +5,7 @@ dependency:
name: galaxy
enabled: false
driver:
name: podman
name: docker
platforms:
- name: debian11
image: jrei/systemd-debian:11

View file

@ -5,7 +5,7 @@ beehive_tarball_armv6_sha256: c1fa8f5a1935ee12f09a2bd9579281d64552897c597534361a
beehive_tarball_x86_64: beehive_0.4.0_Linux_x86_64.tar.gz
beehive_tarball_x86_64_sha256: f1959bc2f7c19d4ec8eaabc7b78492836afcc3bcd75d034854e66607efa9efab
beehive_architecture: "{{ 'armv6' if ansible_architecture|lower == 'armv7l' else ansible_architecture|lower}}"
beehive_architecture: "{{ 'armv6' if ansible_architecture|lower == 'armv7l' else ansible_architecture|lower }}"
beehive_tarball: "{{ lookup('vars', 'beehive_tarball_'+beehive_architecture, default=beehive_tarball_x86_64) }}"
beehive_tarball_sha256: "{{ lookup('vars', 'beehive_tarball_'+beehive_architecture+'_sha256', default=beehive_tarball_x86_64_sha256) }}"