mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 07:28:05 -05:00
107 lines
4.7 KiB
YAML
107 lines
4.7 KiB
YAML
name: Codecov coverage report upload for PRs from external forks
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: [main]
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
# Required to read uploaded artifact from another workflow run
|
|
actions: read
|
|
contents: read
|
|
|
|
jobs:
|
|
get-commit-tag:
|
|
if: github.event.workflow_run.head_repository.fork == true
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
|
name: get-commit-tag
|
|
outputs:
|
|
commit-tag: ${{ steps.compute-commit-tag.outputs.COMMIT_TAG }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ github.event.workflow_run.head_repository.full_name }}
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
|
fetch-depth: 0
|
|
- name: Compute commit tag
|
|
shell: bash
|
|
id: compute-commit-tag
|
|
# COMMIT_TAG will be the commit SHA of the workflow run that triggered this workflow
|
|
# - For a new commit on a PR branch, COMMIT_TAG = head of PR branch
|
|
#
|
|
# Note that we cannot use GITHUB_SHA here because it will always reference the head of main branch
|
|
# Since we intend for this workflow to run only for PRs from an external fork, we want COMMIT_TAG to match the PR branch head
|
|
run: |
|
|
echo "COMMIT_TAG=$(git rev-parse --short=7 ${{ github.event.workflow_run.head_sha }})" >> $GITHUB_OUTPUT
|
|
- name: Show commit tag
|
|
run: |
|
|
echo "COMMIT_TAG: ${{ steps.compute-commit-tag.outputs.COMMIT_TAG }}"
|
|
|
|
# Ideally we would use dorny/paths-filter@v3 to conditionally trigger an upload job based on file changes
|
|
# However there is a limitation in Github Actions where workflows triggered by a `workflow_run` event have no access to metadata on external fork PRs - https://github.com/orgs/community/discussions/25220
|
|
# Hence we are unable to find the base commit (the common ancestor commit between the PR branch and main branch) without using very clunky workarounds
|
|
# Hence we cannot provide the correct set of 'before' and 'after' commits for dorny/paths-filter@v3 to accurately assess PR file changes
|
|
# So instead we unconditionally use 'continue-on-error: true' and try to download every possible test coverage report that we want to upload to Codecov
|
|
|
|
upload-codecov-coordinator:
|
|
needs: [ get-commit-tag ]
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
|
name: upload-codecov-coordinator
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
steps:
|
|
- name: Download Jacoco test coverage report (from coordinator-testing.yml)
|
|
continue-on-error: true
|
|
uses: actions/download-artifact@v4
|
|
id: coordinator-report-download
|
|
with:
|
|
name: jacocoRootReport-${{ needs.get-commit-tag.outputs.commit-tag }}.xml
|
|
path: |
|
|
${{ github.workspace }}
|
|
# Required to download artifacts from another workflow run
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Gets run id of the precedeing workflow that triggered this workflow_run
|
|
run-id: ${{ github.event.workflow_run.id }}
|
|
- uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 #v5.4.3
|
|
if: ${{ steps.coordinator-report-download.outcome == 'success' }}
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ${{ github.workspace }}/jacocoRootReport.xml
|
|
flags: kotlin
|
|
os: linux
|
|
name: codecov-coordinator
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
upload-codecov-smart-contracts:
|
|
needs: [ get-commit-tag ]
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
|
name: upload-codecov-smart-contracts
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
steps:
|
|
- name: Download smart contract coverage report (from run-smc.tests.yml)
|
|
id: smc-report-download
|
|
continue-on-error: true
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: smart-contract-coverage-${{ needs.get-commit-tag.outputs.commit-tag }}.json
|
|
path: |
|
|
${{ github.workspace }}
|
|
# Required to download artifacts from another workflow run
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Gets run id of the precedeing workflow that triggered this workflow_run
|
|
run-id: ${{ github.event.workflow_run.id }}
|
|
- uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 #v5.4.3
|
|
if: ${{ steps.smc-report-download.outcome == 'success' }}
|
|
with:
|
|
fail_ci_if_error: true
|
|
files: ${{ github.workspace }}/coverage-final.json
|
|
flags: hardhat
|
|
os: linux
|
|
name: codecov-contracts
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|