-
Notifications
You must be signed in to change notification settings - Fork 21
41 lines (34 loc) · 1.05 KB
/
molecule-mysql.yml
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
# Github action to run Molecule for "base"
name: mysql
on:
push:
paths:
- 'roles/mysql/**'
- 'roles/galera/**'
- 'roles/galera_create_users/**'
- 'molecule/mysql/**'
- '.github/workflows/molecule-mysql.yml'
pull_request:
paths:
- 'roles/mysql/**'
- 'roles/galera/**'
- 'roles/galera_create_users/**'
- 'molecule/mysql/**'
- '.github/workflows/molecule-mysql.yml'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Installing dependencies
run: pip install jinja2 ansible molecule molecule-docker pytest-testinfra pytest setuptools
- name: disable apparmor for mysql
run: sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/
- name: parse apparmor for mysql
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
- name: Run role tests
run: molecule test -s mysql