You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Download all artifacts to publish together
137
139
uses: actions/download-artifact@v4
138
140
with:
139
-
name: 'ubuntu-latest'
140
-
path: './coverage/ubuntu-latest'
141
+
name: "ubuntu-latest"
142
+
path: "./coverage/ubuntu-latest"
141
143
142
144
- name: Download all artifacts to publish together
143
145
uses: actions/download-artifact@v4
144
146
with:
145
-
name: 'macos-latest'
146
-
path: './coverage/macos-latest'
147
+
name: "macos-latest"
148
+
path: "./coverage/macos-latest"
147
149
148
150
- name: Download all artifacts to publish together
149
151
uses: actions/download-artifact@v4
150
152
with:
151
-
name: 'windows-latest'
152
-
path: './coverage/windows-latest'
153
+
name: "windows-latest"
154
+
path: "./coverage/windows-latest"
153
155
154
156
- name: Download all artifacts to publish together
155
157
uses: actions/download-artifact@v4
156
158
with:
157
-
name: 'coverage_VBC'
158
-
path: './coverage/coverage_VBC'
159
+
name: "coverage_VBC"
160
+
path: "./coverage/coverage_VBC"
159
161
162
+
- name: Download all artifacts to publish together
163
+
uses: actions/download-artifact@v4
164
+
with:
165
+
name: ${{env.COVERAGE_FILENAME_MACOS}}
166
+
path: './coverage/coverageFileMacOS'
167
+
- name: Download all artifacts to publish together
168
+
uses: actions/download-artifact@v4
169
+
with:
170
+
name: ${{env.COVERAGE_FILENAME_UBUNTU}}
171
+
path: "./coverage/coverageFileUbuntu"
172
+
- name: Download all artifacts to publish together
173
+
uses: actions/download-artifact@v4
174
+
with:
175
+
name: ${{env.COVERAGE_FILENAME_WINDOWS}}
176
+
path: './coverage/coverageFileWindows'
177
+
- name: Download all artifacts to publish together
178
+
uses: actions/download-artifact@v4
179
+
with:
180
+
pattern: test_coverage_*
181
+
path: "./coverage/coverageFiles"
182
+
183
+
- name: "Check coverage file"
184
+
run: cd ./coverage/coverageFiles && ls -a
160
185
- name: Rename folders
161
186
run: |
162
187
cd ./coverage
@@ -173,28 +198,130 @@ jobs:
173
198
done
174
199
shell: bash
175
200
176
-
- name: Show the coverage folder
177
-
run: |
178
-
cd ./coverage
179
-
ls
180
-
181
201
- name: Generate html to show the latest coverages for all os types
182
202
run: |
183
-
cd ./coverage
184
-
echo "<!DOCTYPE html><html><head><title>Contributor Readiness</title></head><body><h1>View contributor guides and full test coverage reports</h1><ul><li><a href="https://uifabric.visualstudio.com/iss/_wiki/wikis/iss.wiki/280/Charting-Concepts">Contributor guides</a></li><li><a href="./windows-latest/index.html">Coverage for Windows</a></li><li><a href="./ubuntu-latest/index.html">Coverage for Ubuntu</a></li><li><a href="./macos-latest/index.html">Coverage for MacOS</a></li><li><a href="./coverage_VBC/index.html">Coverage for Vertical bar chart - Windows</a></li></ul></body></html>" >> index.html
203
+
cd ./coverage
204
+
echo "<!DOCTYPE html><html><head><title>Contributor Readiness</title></head><body><h1>View contributor guides and full test coverage reports</h1><ul><li><a href="https://uifabric.visualstudio.com/iss/_wiki/wikis/iss.wiki/280/Charting-Concepts">Contributor guides</a></li><li><a href="./windows-latest/index.html">Coverage for Windows</a></li><li><a href="./ubuntu-latest/index.html">Coverage for Ubuntu</a></li><li><a href="./macos-latest/index.html">Coverage for MacOS</a></li><li><a href="./coverage_VBC/index.html">Coverage for Vertical bar chart - Windows</a></li></ul></body></html>" >> index.html
185
205
shell: bash
186
206
187
207
- name: Setup Pages
188
208
uses: actions/configure-pages@v4
189
-
209
+
190
210
- name: Upload artifact
191
211
uses: actions/upload-pages-artifact@v3
192
212
with:
193
-
path: './coverage'
213
+
path: "./coverage"
214
+
215
+
- name: Directory disp
216
+
run: ls -a
217
+
218
+
- name: Checkout [main]
219
+
uses: actions/checkout@v4
220
+
with:
221
+
path: repo
222
+
ref: main
223
+
224
+
- name: Remove old artifacts
225
+
run: |
226
+
rm -rf ./repo/docs/coverageFiles
227
+
cd ./repo/docs
228
+
ls -a
229
+
shell: bash
230
+
- name: Rename all txt reports to md and remove unnecessary lines
0 commit comments