-
Notifications
You must be signed in to change notification settings - Fork 7
253 lines (239 loc) · 10.9 KB
/
demo_weekly.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
##
## Copyright (c) 2024 TUM Department of Electrical and Computer Engineering.
##
## This file is part of Seal5.
## See https://github.com/tum-ei-eda/seal5.git for further info.
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
# Seal5 demonstration (also serves as end-to-end testj
name: Usage Demo (Weekly)
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 6"
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
jobs:
demo:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.10"
script:
- demo.py
- demo.sh
- corev_demo.py
# Broken due to tablegen freeze
# - gen_demo.py
# - gpr32_demo.py
- openasip_demo.py
- rv64_demo.py
- rvc_demo.py
# - rvp_demo.py
- s4e_demo.py
- tumeda_demo.py
verbose:
- "0"
progress:
- "1"
clone_depth:
- 1
# fast:
# - "0"
ignore_error:
- "1"
build_config:
# - release
- release_assertions
test:
- "1"
install:
- "1"
deploy:
- "1"
export:
- "1"
ccache:
- "1"
llvm-ref:
- "llvmorg-18.1.0-rc3"
- "llvmorg-19.1.0"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup ccache
if: ${{ matrix.ccache == '1' }}
uses: hendrikmuhs/ccache-action@v1
with:
max-size: 2G
key: ${{ matrix.os }}-${{ matrix.script }}-${{ matrix.build_config }}
variant: sccache
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install APT packages
run: |
sudo apt -qq install -y python3-pip python3-venv cmake make ninja-build python3-pandas
- name: Initialize Virtualenv
run: |
python -m pip install --upgrade pip
python -m venv .venv
- name: Install dependencies
run: |
source .venv/bin/activate
pip install -r requirements.txt
pip list
- name: Run package creation
run: |
source .venv/bin/activate
pip install -e .
- name: Determine program
id: ctx
run: |
if [[ "${{ matrix.script }}" == *.py ]]
then
echo "program=python3" >> $GITHUB_OUTPUT
echo "name=$(basename ${{ matrix.script}} .py)-py-${{ matrix.llvm-ref }}" >> $GITHUB_OUTPUT
elif [[ "${{ matrix.script }}" == *.sh ]]
then
echo "program=bash" >> $GITHUB_OUTPUT
echo "name=$(basename ${{ matrix.script}} .sh)-sh-${{ matrix.llvm-ref }}" >> $GITHUB_OUTPUT
else
echo "Invalid file extension!"
exit 1
fi
- name: Run the demo
run: |
source .venv/bin/activate
VERBOSE=${{ matrix.verbose }} PROGRESS=${{ matrix.progress }} SEAL5_NUM_THREADS=1 LLVM_REF=${{ matrix.llvm-ref }} CCACHE=${{ matrix.ccache }} CLONE_DEPTH=${{ matrix.clone_depth }} BUILD_CONFIG=${{ matrix.build_config }} IGNORE_ERROR=${{ matrix.ignore_error }} TEST=${{ matrix.test }} INSTALL=${{ matrix.install }} DEPLOY=${{ matrix.deploy }} EXPORT=${{ matrix.export }} DEST=/tmp/seal5_llvm ${{ steps.ctx.outputs.program }} examples/${{ matrix.script }}
- name: Generate Reports
run: |
source .venv/bin/activate
mkdir reports/
# Properties
python3 -m seal5.backends.report.properties.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --output reports/properties.csv
python3 -m seal5.backends.report.properties.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --output reports/properties.md
echo "### Properties" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/properties.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
# Status
python3 -m seal5.backends.report.status.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/status.csv
python3 -m seal5.backends.report.status.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --compact --output reports/status_compact.csv
python3 -m seal5.backends.report.status.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/status.md --markdown-icons
python3 -m seal5.backends.report.status.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --compact --output reports/status_compact.md --markdown-icons
echo "### Passes" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/status_compact.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
# Test Results
python3 -m seal5.backends.report.test_results.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/test_results.csv --coverage reports/test_coverage.csv
python3 -m seal5.backends.report.test_results.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --compact --output reports/test_results_compact.csv --coverage reports/test_coverage_compact.csv
python3 -m seal5.backends.report.test_results.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/test_results.md --coverage reports/test_coverage.md --markdown-icons
python3 -m seal5.backends.report.test_results.writer /tmp/seal5_llvm/.seal5/models/*.seal5model --yaml /tmp/seal5_llvm/.seal5/settings.yml --compact --output reports/test_results_compact.md --coverage reports/test_coverage_compact.md --markdown-icons
echo "### Test Coverage" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/test_coverage_compact.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
echo "### Test Results" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/test_results_compact.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
# Diff
python3 -m seal5.backends.report.diff.writer --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/diff.csv
python3 -m seal5.backends.report.diff.writer --yaml /tmp/seal5_llvm/.seal5/settings.yml --output reports/diff.md
echo "### Diff" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/diff.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
# Stage Times
python3 -m seal5.backends.report.times.writer --yaml /tmp/seal5_llvm/.seal5/settings.yml --pass-times --output reports/stage_times.csv --sum-level 2
python3 -m seal5.backends.report.times.writer --yaml /tmp/seal5_llvm/.seal5/settings.yml --pass-times --output reports/stage_times.md --sum-level 2
python3 -m seal5.backends.report.times.writer --yaml /tmp/seal5_llvm/.seal5/settings.yml --pass-times --output reports/stage_times.mermaid --sum-level 2
echo "### Stage/Pass Times" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat reports/stage_times.md >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
echo "\`\`\`mermaid" >> $GITHUB_STEP_SUMMARY
cat reports/stage_times.mermaid >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
- name: Upload Seal5 Reports
uses: actions/upload-artifact@v4
with:
name: demo-${{ steps.ctx.outputs.name }}-${{ matrix.llvm-ref }}-reports
path: reports/
- name: Upload Seal5 Metadata
uses: actions/upload-artifact@v4
if: "${{ matrix.export == '1' }}"
with:
name: demo-${{ steps.ctx.outputs.name }}-${{ matrix.llvm-ref }}-export
path: /tmp/seal5_llvm.tar.gz
- name: Upload Seal5 LLVM Installation
uses: actions/upload-artifact@v4
if: "${{ matrix.install == '1' }}"
with:
name: demo-${{ steps.ctx.outputs.name }}-${{ matrix.llvm-ref }}-install
path: /tmp/seal5_llvm/.seal5/install/${{ matrix.build_config }}
- name: Upload Seal5 LLVM Sources Grouped_stat_prop_result_all.md
uses: actions/upload-artifact@v4
if: "${{ matrix.deploy == '1' }}"
with:
name: demo-${{ steps.ctx.outputs.name }}-${{ matrix.llvm-ref }}-source
path: /tmp/seal5_llvm_source.zip
- name: Aggregate and Publish Test Results
run: |
python3 -m pip install pandas tabulate
python3 examples/merge_test_artifacts.py reports/status_compact.csv reports/properties.csv reports/test_results_compact.csv reports/test_coverage_compact.csv
ls -al
echo "### Summarized and Compact Pass/Test Results" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat Grouped_stat_prop_result_test_wo_instr.html >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
echo "### Summarized and Compact Test Coverage Results" >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
cat Grouped_stat_prop_result_cv_wo_instr.html >> $GITHUB_STEP_SUMMARY
echo >> $GITHUB_STEP_SUMMARY
#echo "### Summarized Pass/Test Results" >> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
#cat Grouped_stat_prop_result_test.html >> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
#echo "### Summarized Test Coverage Results" >> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
#cat Grouped_stat_prop_result_cv.html >> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
#echo "### Compiled Pass/Test/Coverage Results with Properties" >> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
#cat Grouped_stat_prop_result_all.html> $GITHUB_STEP_SUMMARY
#echo >> $GITHUB_STEP_SUMMARY
- name: Upload Grouped and Aggregated Test Results
uses: actions/upload-artifact@v4
if: "${{ matrix.deploy == '1' }}"
with:
name: demo-${{ steps.ctx.outputs.name }}-${{ matrix.llvm-ref }}-aggregated-test-results
path: |
Grouped_stat_prop_result_all.html
Grouped_stat_prop_result_cv.html
Grouped_stat_prop_result_cv_wo_instr.html
Grouped_stat_prop_result_test.html
Grouped_stat_prop_result_test_wo_instr.html