Skip to content

Commit 7fe0d3a

Browse files
Auto deploy test coverage to docsite (#21)
* deploy: 2606de2 * yml change * testing action * testing action * testing action * Testing * testing * test * testing auto commit * minor fix * Minor fix * directory fix * Disp dir * dir change * small fix * commit test * dir disp * dir fix * testing dir * dir fix * git stat * commit test * view moved coverage * auto commit fix * Apply automatic changes * branch fix * Delete artifact * Apply automatic changes * risky commit * Add deployment script * checkout main while deploying * Remove old artifacts * change permissions * branch change * branch set to main * list files post commit * Delete build files * Restore docusaurus config * Script cleanup * Remove push trigger * test commit * comment time taking tests * test glob pattern artifact download * retest * use of pattern * commit testCoverage report to main * Rename txt to md * md renaming * change foldername * new branch for testCov deployment * Rename md doc foldername * change pull command * yml syntax fix * Add rename feature * Add push to cov branch * Fix upstream * Stuff * Syntax fix * rename fix * syntax fix * rename filenames * rename fix * Linting md * Clear stuff * branch wizardry * more branch wizardry * No more branch wizardry * Enable all tests * restore matrix * disable matrix * rename messup fixed * matrix change * rename fix * echo logging * yay log * Fix rename * reactivate matrix * Folder restructuring * deployment wizardry * fix deployent wizardry * Push artifact to repo * discard second repo solution * separate branch for artifacts * Comment artifact downloads * Shift pull statement * remove old artifacts * Setup multi commit * some branch wizardry * Add link to website * Fix filename * debug report file * Fix sed commands * Add coverage percentage value * add status badge * Fix badge variable * Fix trimming * Fix Line 2 * Reset workflow for all OS * fix workflow repo input params --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Shubhabrata08 <[email protected]>
1 parent 60339af commit 7fe0d3a

File tree

1 file changed

+177
-50
lines changed

1 file changed

+177
-50
lines changed

.github/workflows/testCoverage.yml

+177-50
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Test coverage'
1+
name: "Test coverage"
22
on:
33
schedule:
44
- cron: "0 */8 * * *"
@@ -16,10 +16,10 @@ on:
1616

1717
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1818
permissions:
19-
contents: read
19+
contents: write
2020
pages: write
2121
id-token: write
22-
22+
2323
jobs:
2424
run_tests:
2525
strategy:
@@ -32,13 +32,13 @@ jobs:
3232
windows_artifact_name: ${{ steps.windows.outputs.COVERAGE_FILENAME_WINDOWS }}
3333
macos_artifact_name: ${{ steps.macos.outputs.COVERAGE_FILENAME_MACOS }}
3434

35-
steps:
35+
steps:
3636
- name: Checkout [master]
3737
uses: actions/checkout@v4
3838

3939
- name: Checkout [react-charting]
4040
uses: actions/checkout@v4
41-
with:
41+
with:
4242
repository: ${{ github.event.inputs.repo || 'microsoft/fluentui' }}
4343
ref: ${{ github.event.inputs.branch || 'master' }}
4444
path: repo1
@@ -50,24 +50,24 @@ jobs:
5050
run: ls ./repo1
5151

5252
- name: Install packages
53-
run: yarn --cwd ./tools/UnitTestApp && yarn --cwd ./repo1 && yarn --cwd ./repo1/packages/react-charting
53+
run: yarn --cwd ./tools/UnitTestApp && yarn --cwd ./repo1 && yarn --cwd ./repo1/packages/react-charting
5454

5555
- name: Change function visibility from private to public
5656
id: setup
5757
uses: ./tools/UnitTestApp/ChangeFunctionVisibility
5858
with:
5959
osType: ${{ matrix.os }}
60-
60+
6161
- name: Build
62-
run: yarn --cwd ./repo1 buildto @fluentui/react-charting
62+
run: yarn --cwd ./repo1 buildto @fluentui/react-charting
6363

6464
- name: Run the tests in windows
65-
if: matrix.os == 'windows-latest'
65+
if: matrix.os == 'windows-latest'
6666
run: cd ./repo1/packages/react-charting && powershell -Command "(Get-Content -Path ./config/tests.js) -replace 'PROD', 'TEST' | Set-Content -Path ./config/tests.js" && yarn jest --coverage --coverageDirectory ./coverage/${{matrix.os}} --verbose --coverageReporters=html --coverageReporters=text > coverageReport.txt
6767
continue-on-error: true
6868

6969
- name: Run a single test in windows
70-
if: matrix.os == 'windows-latest'
70+
if: matrix.os == 'windows-latest'
7171
run: cd ./repo1/packages/react-charting && powershell -Command "(Get-Content -Path ./config/tests.js) -replace 'PROD', 'TEST' | Set-Content -Path ./config/tests.js" && yarn jest ./src/components/VerticalBarChart --coverage --coverageDirectory ./coverage/${{matrix.os}}_VerticalBarChart --verbose --coverageReporters=html
7272
continue-on-error: true
7373

@@ -83,14 +83,14 @@ jobs:
8383

8484
- name: Generate coverage file name in windows
8585
id: windows
86-
if: matrix.os == 'windows-latest'
86+
if: matrix.os == 'windows-latest'
8787
run: |
88-
$NOW=& Get-Date -format yyyy-MM-dd
89-
echo "COVERAGE_FILENAME=test_coverage_${{ matrix.os }}_$NOW" >> $env:GITHUB_ENV
88+
$NOW=& Get-Date -format yyyy-MM-dd
89+
echo "COVERAGE_FILENAME=test_coverage_${{ matrix.os }}_$NOW" >> $env:GITHUB_ENV
9090
9191
- name: Generate coverage file name
92-
run: |
93-
echo "COVERAGE_FILENAME=test_coverage_${{ matrix.os }}_$(date +'%Y-%m-%d_%H-%M-%S')" >> $GITHUB_ENV
92+
run: |
93+
echo "COVERAGE_FILENAME=test_coverage_${{ matrix.os }}_$(date +'%Y-%m-%d_%H-%M-%S')" >> $GITHUB_ENV
9494
9595
- name: Save coverage folder
9696
uses: actions/upload-artifact@v4
@@ -114,49 +114,74 @@ jobs:
114114
- name: Extract the coverage summary table
115115
if: matrix.os != 'windows-latest'
116116
run: |
117-
cd ./repo1/packages/react-charting
118-
file_contents=$(cat coverageReport.txt)
119-
table=$(echo "$file_contents" | awk '/----/,/^$/' | sed '1d;$d')
120-
echo "$table"
117+
cd ./repo1/packages/react-charting
118+
file_contents=$(cat coverageReport.txt)
119+
table=$(echo "$file_contents" | awk '/----/,/^$/' | sed '1d;$d')
120+
echo "$table"
121121
122122
- name: Extract the coverage summary table in windows
123123
if: matrix.os == 'windows-latest'
124124
run: |
125-
cd ./repo1/packages/react-charting
126-
$fileContents = Get-Content -Raw -Path "coverageReport.txt"
127-
$tableRegex = "(?ms)----.*?^$"
128-
$table = [regex]::Match($fileContents, $tableRegex)
129-
echo "$table"
130-
131-
publish_to_site:
132-
if: false
125+
cd ./repo1/packages/react-charting
126+
$fileContents = Get-Content -Raw -Path "coverageReport.txt"
127+
$tableRegex = "(?ms)----.*?^$"
128+
$table = [regex]::Match($fileContents, $tableRegex)
129+
echo "$table"
130+
131+
push_artifacts_to_repo:
133132
needs: run_tests
134-
runs-on: 'ubuntu-latest'
133+
runs-on: "ubuntu-latest"
134+
permissions:
135+
contents: write
136+
135137
steps:
136138
- name: Download all artifacts to publish together
137139
uses: actions/download-artifact@v4
138140
with:
139-
name: 'ubuntu-latest'
140-
path: './coverage/ubuntu-latest'
141+
name: "ubuntu-latest"
142+
path: "./coverage/ubuntu-latest"
141143

142144
- name: Download all artifacts to publish together
143145
uses: actions/download-artifact@v4
144146
with:
145-
name: 'macos-latest'
146-
path: './coverage/macos-latest'
147+
name: "macos-latest"
148+
path: "./coverage/macos-latest"
147149

148150
- name: Download all artifacts to publish together
149151
uses: actions/download-artifact@v4
150152
with:
151-
name: 'windows-latest'
152-
path: './coverage/windows-latest'
153+
name: "windows-latest"
154+
path: "./coverage/windows-latest"
153155

154156
- name: Download all artifacts to publish together
155157
uses: actions/download-artifact@v4
156158
with:
157-
name: 'coverage_VBC'
158-
path: './coverage/coverage_VBC'
159+
name: "coverage_VBC"
160+
path: "./coverage/coverage_VBC"
159161

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
160185
- name: Rename folders
161186
run: |
162187
cd ./coverage
@@ -173,28 +198,130 @@ jobs:
173198
done
174199
shell: bash
175200

176-
- name: Show the coverage folder
177-
run: |
178-
cd ./coverage
179-
ls
180-
181201
- name: Generate html to show the latest coverages for all os types
182202
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
185205
shell: bash
186206

187207
- name: Setup Pages
188208
uses: actions/configure-pages@v4
189-
209+
190210
- name: Upload artifact
191211
uses: actions/upload-pages-artifact@v3
192212
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
231+
run: |
232+
cd ./coverage/coverageFiles
233+
for f in $(find ./ -name '*.txt'); do
234+
sed -i '/PASS/d' "$f"
235+
sed -i '/FAIL/d' "$f"
236+
sed -i '/yarn/d' "$f"
237+
sed -i '/jest/d' "$f"
238+
sed -i '1d' "$f"
239+
statementCoveragePercent=$(echo $(awk '/All files/ {print}' $f) | awk -F'|' '{print $2}')
240+
statementCoveragePercentTrimmed=$(echo "$statementCoveragePercent" | awk '{$1=$1; print}')
241+
sed -i "1i\![Test Coverage Badge](https://img.shields.io/badge/Test_Coverage-$statementCoveragePercentTrimmed-mediumgreen)\n" "$f"
242+
sed -i '2i\ ' "$f"
243+
sed -i '3i\[Click here for a detailed report](https://fluentui-charting-test-coverage.netlify.app/)' "$f"
244+
dir_path=$(dirname "$f")
245+
file_name=$(basename "$f")
246+
new_file_name="TestCoverageReport.md"
247+
mv -- "$f" "$dir_path/$new_file_name"
248+
done
249+
ls -lR
250+
251+
- name: Move coverage to docs
252+
run: ls -a && mv -f coverage/coverageFiles repo/docs && cd repo/docs && ls -a
253+
- name: Rename folder names for reports
254+
run: |
255+
cd ./repo/docs/coverageFiles
256+
ls -lR
257+
for dir in *; do
258+
if [[ $dir == *"ubuntu"* ]]; then
259+
mv "$dir/TestCoverageReport.md" "Ubuntu Test Coverage Report.md"
260+
rm -rf $dir
261+
elif [[ $dir == *"macos"* ]]; then
262+
mv "$dir/TestCoverageReport.md" "MacOS Test Coverage Report.md"
263+
rm -rf $dir
264+
elif [[ $dir == *"windows"* ]]; then
265+
mv "$dir/TestCoverageReport.md" "Windows Test Coverage Report.md"
266+
rm -rf $dir
267+
fi
268+
done
269+
ls -lR
270+
shell: bash
271+
- uses: stefanzweifel/git-auto-commit-action@v5
272+
with:
273+
repository: repo
274+
branch: main
275+
- name: Change branch to test-coverage-artifacts and move new artifacts to folder
276+
run: |
277+
cd repo
278+
if [ `git branch | grep test-coverage-artifacts` ]
279+
then
280+
git checkout test-coverage-artifacts
281+
git pull origin test-coverage-artifacts
282+
else
283+
git checkout -b test-coverage-artifacts
284+
fi
285+
rm -rf ./*
286+
cd ..
287+
mv -f ./coverage/* ./repo/
288+
- uses: stefanzweifel/git-auto-commit-action@v5
289+
with:
290+
repository: repo
291+
branch: test-coverage-artifacts
292+
push_options: "--force"
293+
194294

195-
- name: Deploy to GitHub Pages
196-
id: deployment
197-
uses: actions/deploy-pages@v4
295+
deploy:
296+
needs: push_artifacts_to_repo
297+
runs-on: "ubuntu-latest"
298+
steps:
299+
- uses: actions/checkout@v4
300+
with:
301+
ref: main
302+
- uses: actions/setup-node@v3
303+
with:
304+
node-version: 18
305+
cache: yarn
306+
- name: List files in docs
307+
run: cd docs && ls -a
308+
- name: Install dependencies
309+
run: cd apps/docsite && yarn install --frozen-lockfile
310+
- name: Build website
311+
run: cd apps/docsite && yarn build
198312

199-
- name: Url after deployment
200-
run: echo "${{ steps.deployment.outputs.page_url }}"
313+
# Popular action to deploy to GitHub Pages:
314+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
315+
- name: Deploy to GitHub Pages
316+
uses: peaceiris/actions-gh-pages@v3
317+
with:
318+
github_token: ${{ secrets.GITHUB_TOKEN }}
319+
# Build output to publish to the `gh-pages` branch:
320+
publish_dir: ./apps/docsite/build
321+
# The following lines assign commit authorship to the official
322+
# GH-Actions bot for deploys to `gh-pages` branch:
323+
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
324+
# The GH actions bot is used by default if you didn't specify the two fields.
325+
# You can swap them out with your own user credentials.
326+
user_name: github-actions[bot]
327+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

0 commit comments

Comments
 (0)