Output Code Coverage #836
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 The Kubernetes Authors. | |
# | |
# 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. | |
name: Output Code Coverage | |
on: | |
workflow_run: | |
workflows: [Generate Code Coverage] | |
types: [completed] | |
jobs: | |
output-code-coverage: | |
name: Output Code Coverage | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow | |
- name: 'Download reports' | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
let fs = require('fs'); | |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: context.payload.workflow_run.id, | |
}); | |
for (const artifact of allArtifacts.data.artifacts) { | |
let download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: artifact.id, | |
archive_format: 'zip', | |
}); | |
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/${artifact.id}.zip`, Buffer.from(download.data)); | |
} | |
- name: 'Determine source PR' | |
uses: potiuk/get-workflow-origin@e2dae063368361e4cd1f510e8785cd73bca9352e | |
id: source-run-info | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
sourceRunId: ${{ github.event.workflow_run.id }} | |
- name: Set up go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20.2' | |
- name: Install coverage tool | |
run: go install k8s.io/test-infra/robots/coverage@latest | |
- name: Generate comment | |
id: generate-comment | |
run: | | |
unzip \*.zip | |
echo 'comment<<EOF' >> $GITHUB_OUTPUT | |
echo '<!-- pr-coverage -->' >> $GITHUB_OUTPUT | |
echo '## Code Coverage Diff' >> $GITHUB_OUTPUT | |
COVERAGE_DIFF=$(coverage diff base-coverage.out pr-coverage.out | sed -e '1,5d') | |
if [[ -n "${COVERAGE_DIFF}" ]]; then | |
printf -- "%s\n" "${COVERAGE_DIFF}" >> $GITHUB_OUTPUT | |
else | |
echo 'This PR does not change the code coverage' >> $GITHUB_OUTPUT | |
fi | |
echo 'EOF' >> $GITHUB_OUTPUT | |
- name: Create or update comment | |
uses: edumserrano/find-create-or-update-comment@60a62b88d02efeb2c405e578d3a2b47ea0b230b1 | |
with: | |
issue-number: ${{ steps.source-run-info.outputs.pullRequestNumber }} | |
body-includes: '<!-- pr-coverage -->' | |
comment-author: 'github-actions[bot]' | |
body: ${{ steps.generate-comment.outputs.comment }} | |
edit-mode: replace |