-
Notifications
You must be signed in to change notification settings - Fork 29
223 lines (184 loc) · 6.08 KB
/
build_and_test.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# GitHub Action workflow to build and run KnowsMore's tests
#
name: Test Build
on:
push:
branches: [ main ]
paths-ignore:
- .gitignore
- README.md
- LICENSE
- TODO
- knowsmore/__meta__.py
- .github/workflows/build_and_test.yml
- .github/workflows/build_and_publish.yml
pull_request:
branches: [ main ]
paths-ignore:
- .gitignore
- README.md
- LICENSE
- TODO
- knowsmore/__meta__.py
- .github/workflows/build_and_test.yml
- .github/workflows/build_and_publish.yml
jobs:
lint:
name: Check syntaxs errors and warnings
runs-on: ubuntu-latest
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
steps:
- name: Checkout KnowsMore
uses: actions/checkout@v3
- name: Setup Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8
- name: Check syntax errors
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Check PEP8 warnings
run: |
flake8 . --count --ignore=E1,E2,E3,E501,W291,W293 --exit-zero --max-complexity=65 --max-line-length=127 --statistics
bloodhound_ingestor:
name: Check bloodhound ingestor integrity
needs: lint
runs-on: ubuntu-latest
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
steps:
- name: Checkout KnowsMore
uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r tests/requirements-test.txt
- name: Install knowsmore
run: |
pip install .
- name: Install dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: docker-compose jq
version: 1.0
- name: Clonning repository
run: |
git clone https://github.com/SpecterOps/BloodHound.git /opt/BloodHound
cd /opt/BloodHound/
cp examples/docker-compose/* ./
jq -r '.features.enable_auth |= false | .default_admin.email_address |= "[email protected]" | .default_admin.password |= "@Pass123456" | .default_admin.expire_now |= false' examples/docker-compose/bloodhound.config.json > bloodhound.config.json
- name: Creatting docker image
run: |
cd /opt/BloodHound
docker-compose up --detach
- name: Running ingestor
run: |
chmod +x ./tests/bh.sh
./tests/bh.sh
- name: Run BloodHound unit tests
run: |
pytest -s tests/tests_bh.py
- name: Removing docker image
run: |
cd /opt/BloodHound
docker-compose down -v --rmi all
test:
name: Run unit tests and build wheel
needs: bloodhound_ingestor
runs-on: ${{ matrix.os }}
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
experimental: [false]
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- python-version: "3.11"
experimental: true
os: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout KnowsMore
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r tests/requirements-test.txt
- name: Install knowsmore
run: |
pip install .
- name: Run unit tests
run: |
pytest -s tests/tests.py
- name: Remove tests folder (Windows)
if: "contains(matrix.os, 'windows')"
run: |
Remove-Item tests -Force -Recurse
- name: Remove tests folder (Unix)
if: "!contains(matrix.os, 'windows')"
run: |
rm -rf ./tests/
- name: Build artifact
run: |
python setup.py sdist
publish:
name: Publish on Test Environment
needs: test
runs-on: ubuntu-latest
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
experimental: [false]
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout KnowsMore
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r tests/requirements-test.txt
- name: Change Package version
run: |
oldv=$( grep '__version__' knowsmore/__meta__.py | grep -oE '[0-9\.]+')
current=$(date '+%Y%m%d%H%M%S')
meta=$(cat knowsmore/__meta__.py | sed "s/__version__.*/__version__ = '"${oldv}"-"${current}"'/")
echo "$meta" > knowsmore/__meta__.py
- name: Install knowsmore
run: |
pip install .
- name: Build artifact
run: |
rm -rf ./tests/
python setup.py sdist
- name: Publish package in Test Environment
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true