This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 139
83 lines (68 loc) · 2 KB
/
ci.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
name: CI
'on':
pull_request:
push:
branches:
- master
schedule:
- cron: "0 5 * * 0"
defaults:
run:
working-directory: 'geerlingguy.homebrew'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: 'geerlingguy.homebrew'
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install yamllint
- name: Lint code.
run: |
yamllint .
integration:
name: Integration
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-10.15
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: 'geerlingguy.homebrew'
- name: Uninstall GitHub Actions' built-in Homebrew.
run: tests/uninstall-homebrew.sh
- name: Uninstall GitHub Actions' built-in browser installs.
run: |
sudo rm -rf /Applications/Firefox.app
sudo rm -rf /Applications/Google\ Chrome.app
- name: Install test dependencies.
run: sudo pip3 install ansible
- name: Set up the test environment.
run: |
cp tests/ansible.cfg ./ansible.cfg
cp tests/inventory ./inventory
ansible-galaxy install -r requirements.yml -p ./roles
- name: Test the playbook's syntax.
run: ansible-playbook tests/test.yml --syntax-check
- name: Test the playbook.
run: ansible-playbook tests/test.yml
env:
ANSIBLE_FORCE_COLOR: '1'
- name: Idempotence check.
run: |
idempotence=$(mktemp)
ansible-playbook tests/test.yml | tee -a ${idempotence}
tail ${idempotence} | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1)
env:
ANSIBLE_FORCE_COLOR: '1'