mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-08 20:47:59 -05:00
Merge branch 'main' into zkbesu
# Conflicts: # .github/workflows/acceptance-tests.yml # .github/workflows/pre-review.yml # .github/workflows/splitTestsByTime.sh # build.gradle # gradle/verification-metadata.xml
This commit is contained in:
51
.github/workflows/update-test-reports.yml
vendored
Normal file
51
.github/workflows/update-test-reports.yml
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
name: update-test-reports
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
syncTestReports:
|
||||
if: github.repository == 'hyperledger/besu'
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Get latest merge PR number
|
||||
id: latest_merged_pr_number
|
||||
run: echo "PULL_REQUEST_NUMBER=$(gh pr list --repo hyperledger/besu --base main --state merged --json "number,mergedAt" --search "sort:updated-desc" --jq 'max_by(.mergedAt)|.number')" >> "$GITHUB_OUTPUT"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Get unit test reports from latest merged PR
|
||||
uses: dawidd6/action-download-artifact@e7466d1a7587ed14867642c2ca74b5bcc1e19a2d
|
||||
with:
|
||||
workflow: pre-review.yml
|
||||
workflow_conclusion: success
|
||||
pr: ${{ env.LATEST_MERGED_PR_NUMBER }}
|
||||
name_is_regexp: true
|
||||
name: 'unit-\d+-test-results'
|
||||
path: unit-test-results
|
||||
if_no_artifact_found: fail
|
||||
env:
|
||||
LATEST_MERGED_PR_NUMBER: ${{ steps.latest_merged_pr_number.outputs.PULL_REQUEST_NUMBER }}
|
||||
- name: Upload unit test results
|
||||
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
|
||||
with:
|
||||
name: unit-test-results
|
||||
path: 'unit-test-results/**/test-results/**/TEST-*.xml'
|
||||
- name: Get acceptance test reports from latest merged PR
|
||||
uses: dawidd6/action-download-artifact@e7466d1a7587ed14867642c2ca74b5bcc1e19a2d
|
||||
with:
|
||||
workflow: acceptance-tests.yml
|
||||
workflow_conclusion: success
|
||||
pr: ${{ env.LATEST_MERGED_PR_NUMBER }}
|
||||
name_is_regexp: true
|
||||
name: 'acceptance-node-\d+-test-results'
|
||||
path: acceptance-test-results
|
||||
if_no_artifact_found: fail
|
||||
env:
|
||||
LATEST_MERGED_PR_NUMBER: ${{ steps.latest_merged_pr_number.outputs.PULL_REQUEST_NUMBER }}
|
||||
- name: Upload acceptance test results
|
||||
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
|
||||
with:
|
||||
name: acceptance-test-results
|
||||
path: 'acceptance-test-results/**/TEST-*.xml'
|
||||
Reference in New Issue
Block a user