-
Notifications
You must be signed in to change notification settings - Fork 56
83 lines (61 loc) · 3.26 KB
/
ansible-test-sanity.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
---
# Worflow for ansible-test sanity tests
name: ansible-test sanity of the collection
on:
schedule:
- cron: '31 12 * * 1'
workflow_dispatch:
jobs:
sanity:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install test dependencies
run: |
pip3 install ansible ansible-lint==6.8.6
pip3 install ansible-compat==3.0.2
# - name: Install collection dependencies
# run: ansible-galaxy collection install community.general
# - name: List directory /home/runner/work/
# working-directory: /home/runner/
# run: ls -al /home/runner/work/
# - name: List directory /home/runner/work/_actions
# working-directory: /home/runner/
# run: ls -al /home/runner/work/_actions
- name: List directory /home/runner/work/_actions/actions
working-directory: /home/runner/
run: ls -al /home/runner/work/_actions/actions
# - name: List directory /home/runner/work/community.sap_install
# working-directory: /home/runner/
# run: ls -al /home/runner/work/community.sap_install
# - name: List directory /home/runner/work/community.sap_install/community.sap_install
# working-directory: /home/runner/
# run: ls -al /home/runner/work/community.sap_install/community.sap_install
- name: Move the collection to the correct location - Create new directory
run: mkdir -p /home/runner/.ansible/collections/ansible_collections/community
- name: Move the collection to the correct location - Move the collection
working-directory: /home/runner/
run: mv /home/runner/work/community.sap_install/community.sap_install /home/runner/.ansible/collections/ansible_collections/community
# - name: List directory /home/runner/.ansible/collections/ansible_collections/community
# working-directory: /home/runner/
# run: ls -al /home/runner/.ansible/collections/ansible_collections/community
- name: Move the collection to the correct location - Rename the directory
working-directory: /home/runner/
run: mv /home/runner/.ansible/collections/ansible_collections/community/community.sap_install /home/runner/.ansible/collections/ansible_collections/community/sap_install
# - name: List directory /home/runner/.ansible/collections/ansible_collections/community
# working-directory: /home/runner/
# run: ls -al /home/runner/.ansible/collections/ansible_collections/community
# - name: List directory /home/runner/.ansible/collections/ansible_collections/community/sap_install
# working-directory: /home/runner/
# run: ls -al /home/runner/.ansible/collections/ansible_collections/community/sap_install
- name: Run sanity tests
working-directory: /home/runner/.ansible/collections/ansible_collections/community/sap_install
run: ansible-test sanity
- name: Move the collection to its previous location
working-directory: /home/runner/
run: mv /home/runner/.ansible/collections/ansible_collections/community/sap_install /home/runner/work/community.sap_install/community.sap_install