-
-
Notifications
You must be signed in to change notification settings - Fork 23
229 lines (225 loc) · 8.56 KB
/
Regression_Tests.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
224
225
226
227
228
229
---
name: Regression Tests
on: push
jobs:
Agent:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install -r Tests/Regression/Agent/pip_requirements.txt
- name: Robot Framework
run: robot --include ${{ matrix.platform }} Tests/Regression/Agent
Manager:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: "Ubuntu Installs"
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: |
sudo apt install python3-tk python3-dev python3-xlib scrot fluxbox # tesseract-ocr
sudo apt list --installed
- name: "Ubuntu Xvfb"
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: |
export DISPLAY=:13.0
Xvfb :13 -screen 0 1920x1080x24 > /dev/null 2>&1 &
# xauth with complain unless ~/.Xauthority exists
touch ~/.Xauthority
# To view a listing of the .Xauthority file, enter the following
xauth list
# fluxbox
fluxbox &
# - name: "MacOS Installs"
# if: ${{ matrix.platform == 'macos-latest' }}
# run: |
# brew update
# brew install tesseract
# brew upgrade
#
# - name: "Windows Installs"
# if: ${{ matrix.platform == 'windows-latest' }}
# run: |
# Invoke-WebRequest -Uri "https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-w64-setup-5.3.1.20230401.exe"
# -OutFile "$($ENV:Temp)\tesseract-ocr-w64-setup-5.3.1.20230401.exe"
# & "$($ENV:Temp)\tesseract-ocr-w64-setup-5.3.1.20230401.exe" /s
# shell: powershell
#
# - name: "Verify tesseract"
# run: tesseract -v
- run: pip install -r Tests/Regression/Manager/pip_requirements.txt
- name: setup git config
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git config advice.addIgnoredFile false
- name: create branch for test results
run: git checkout -B Test-Result-Manager-${{ matrix.platform }}-${{ matrix.python }}
- name: Robot Framework
id: robottest
run: >
robot --include ${{ matrix.platform }}
--outputdir Tests/Regression/Manager/Logs/${{ matrix.platform }}_${{ matrix.python }}
Tests/Regression/Manager
env:
DISPLAY: :13.0
- name: git commit
# if: ${{ steps.robottest.conclusion == 'failure' }}
# https://docs.github.com/en/actions/learn-github-actions/expressions
if: ${{ failure() }}
run: |
# Stage the file, commit and push
echo "git add"
git add Tests/Regression/Manager/Logs/${{ matrix.platform }}_${{ matrix.python }}/
echo "git commit"
git commit -m "Manager ${{ matrix.platform }} ${{ matrix.python }}"
- name: Switch back to original branch
# if: ${{ steps.robottest.conclusion == 'failure' }}
if: ${{ failure() }}
run: |
echo "git checkout ref_name: ${{ github.ref_name }}"
git checkout -f ${{ github.ref_name }}
echo "git pull"
git pull --ff --autostash -f
- name: Merge test results into original branch
# if: ${{ steps.robottest.conclusion == 'failure' }}
if: ${{ failure() }}
run: |
echo "git merge"
git merge --ff Test-Result-Manager-${{ matrix.platform }}-${{ matrix.python }}
echo "git pull again"
git pull --ff --autostash -f
echo "git push"
git push
Reporter:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.9', '3.10', '3.11']
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: "Ubuntu Installs"
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: |
sudo apt install python3-tk python3-dev python3-xlib scrot fluxbox tesseract-ocr
sudo apt list --installed
- name: "Ubuntu Xvfb"
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: |
export DISPLAY=:13.0
Xvfb :13 -screen 0 1920x1080x24 > /dev/null 2>&1 &
# xauth with complain unless ~/.Xauthority exists
touch ~/.Xauthority
# To view a listing of the .Xauthority file, enter the following
xauth list
# fluxbox
fluxbox &
#
- name: "MacOS Install tesseract"
if: ${{ matrix.platform == 'macos-latest' }}
run: |
brew install tesseract
# brew update
# brew upgrade
#
- name: "Windows Download Tesseract"
if: ${{ matrix.platform == 'windows-latest' }}
shell: pwsh
run: >
Invoke-WebRequest
-Uri "https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-w64-setup-5.3.1.20230401.exe"
-OutFile "$($ENV:Temp)\tesseract-ocr-w64-setup-5.3.1.20230401.exe"
- name: "Windows Install Tesseract"
if: ${{ matrix.platform == 'windows-latest' }}
shell: cmd
run: |
"%Temp%\tesseract-ocr-w64-setup-5.3.1.20230401.exe" /S
- name: "Windows Add Tesseract to Path"
if: ${{ matrix.platform == 'windows-latest' }}
shell: pwsh
run: |
echo "$($ENV:ProgramFiles)\Tesseract-OCR" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: "Verify tesseract"
# if: ${{ matrix.platform != 'windows-latest' }}
run: tesseract -v
#
# - name: "Verify tesseract"
# if: ${{ matrix.platform == 'windows-latest' }}
# run: |
# echo %PATH%
# echo %programfiles%
# dir "%programfiles%""
# dir "%programfiles%\Tesseract-OCR"
# echo %programfiles(x86)%
# dir "%programfiles(x86)%"
# "%programfiles%\Tesseract-OCR\tesseract.exe" -v
# shell: cmd
#
- run: pip install -r Tests/Regression/Reporter/pip_requirements.txt
- name: setup git config
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git config advice.addIgnoredFile false
- name: create branch for test results
run: git checkout -B Test-Result-Reporter-${{ matrix.platform }}-${{ matrix.python }}
- name: Robot Framework
id: robottest
run: >
robot --include ${{ matrix.platform }}
--outputdir Tests/Regression/Reporter/Logs/${{ matrix.platform }}_${{ matrix.python }}
Tests/Regression/Reporter
env:
DISPLAY: :13.0
- name: git commit
# if: ${{ steps.robottest.conclusion == 'failure' }}
if: ${{ failure() }}
run: |
# Stage the file, commit and push
echo "git add"
git add Tests/Regression/Reporter/Logs/${{ matrix.platform }}_${{ matrix.python }}/
echo "git commit"
git commit -m "Reporter ${{ matrix.platform }} ${{ matrix.python }}"
- name: Switch back to original branch
# if: ${{ steps.robottest.conclusion == 'failure' }}
if: ${{ failure() }}
run: |
echo "git checkout ref_name: ${{ github.ref_name }}"
git checkout -f ${{ github.ref_name }}
echo "git pull"
git pull --ff --autostash -f
- name: Merge test results into original branch
# if: ${{ steps.robottest.conclusion == 'failure' }}
if: ${{ failure() }}
run: |
echo "git merge"
git merge --ff Test-Result-Reporter-${{ matrix.platform }}-${{ matrix.python }}
echo "git pull again"
git pull --ff --autostash
echo "git push"
git push