-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (32 loc) · 1.34 KB
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
name: CI
on:
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
molecule:
name: Molecule
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Install python
run: sudo apt update && sudo apt install -y python3 python3-pip python3-setuptools
- name: Install Ansible
run: sudo pip3 install ansible
- name: Create ansible.cfg with correct roles_path
run: sudo printf '[defaults]\nhost_key_checking = False\nroles_path=../' > ansible.cfg
- name: Install role dependencies
run: sudo ansible-galaxy install geerlingguy.ntp grycap.munge grycap.ssh
- name: Basic role syntax check
run: sudo ansible-playbook tests/test.yml -i tests/inventory --syntax-check
- name: Basic role check in front
run: sudo ansible-playbook tests/test.yml -i tests/inventory
- name: Idempotence role check in front
run: sudo ansible-playbook tests/test.yml -i tests/inventory
- name: Basic role check in wn
run: sudo ansible-playbook tests/test.yml -i tests/inventory -e slurm_type_of_node=wn
- name: Idempotence role check in wn
run: sudo ansible-playbook tests/test.yml -i tests/inventory -e slurm_type_of_node=wn