generated from LeKSuS-04/ad-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
145 lines (111 loc) · 2.96 KB
/
check-services.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: check-services
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
list-services:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: install requirements
run: pip install -r requirements.txt
- name: install checkers requirements
run: pip install -r checkers/requirements.txt
- name: list services
run: ./check.py list
check-single-service:
runs-on: ubuntu-latest
needs: list-services
strategy:
matrix:
service:
- schizichs
- amogus_plus_plus
- jeopardy
- Zapiski
- msngr
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: install requirements
run: pip install -r requirements.txt
- name: install checkers requirements
run: pip install -r checkers/requirements.txt
- name: validate service ${{ matrix.service }}
run: ./check.py validate
env:
SERVICE: ${{ matrix.service }}
- name: up service ${{ matrix.service }}
run: ./check.py up
env:
SERVICE: ${{ matrix.service }}
- name: wait for service ${{ matrix.service }}
run: sleep 30
- name: check service ${{ matrix.service }} small
run: ./check.py check
env:
SERVICE: ${{ matrix.service }}
RUNS: 10
- name: down service ${{ matrix.service }}
run: ./check.py down
env:
SERVICE: ${{ matrix.service }}
- name: up service ${{ matrix.service }}
run: ./check.py up
env:
SERVICE: ${{ matrix.service }}
- name: wait for service ${{ matrix.service }}
run: sleep 30
- name: check service ${{ matrix.service }} big
run: ./check.py check
env:
SERVICE: ${{ matrix.service }}
RUNS: 100
- name: down service ${{ matrix.service }}
run: ./check.py down
env:
SERVICE: ${{ matrix.service }}
if: ${{ always() }}
- name: logs after failure
run: ./check.py logs
if: ${{ failure() }}
check-all-services:
runs-on: ubuntu-latest
needs: check-single-service
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: install requirements
run: pip install -r requirements.txt
- name: install checkers requirements
run: pip install -r checkers/requirements.txt
- name: up all services
run: ./check.py up
env:
SERVICE: all
- name: wait for services
run: sleep 30
- name: check all services
run: ./check.py check
env:
SERVICE: all
RUNS: 50
- name: down all services
run: ./check.py down
env:
SERVICE: all
if: ${{ always() }}
- name: logs after failure
run: ./check.py logs
if: ${{ failure() }}