Skip to content

Publish Test Results #9642

Publish Test Results

Publish Test Results #9642

Workflow file for this run

# Copyright 2022 Goldman Sachs
#
# 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: Publish Test Results
on:
workflow_run:
workflows: ["Build CI"]
types:
- completed
permissions: {}
jobs:
test-results:
name: Publish Test Results
# NOTE: Only run this when not in fork as those likely do not have access to larger runners and will fail on normal runner due to resource limitation
if: "github.event.workflow_run.conclusion != 'skipped' && github.repository == 'finos/legend-engine'"
runs-on: ubuntu-latest
permissions:
actions: read
checks: write
pull-requests: write
steps:
- name: Download and Extract Artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mkdir -p artifacts && cd artifacts
artifacts_url=${{ github.event.workflow_run.artifacts_url }}
gh api "$artifacts_url" -q '.artifacts[] | [.name, .archive_download_url] | @tsv' | while read artifact
do
IFS=$'\t' read name url <<< "$artifact"
gh api $url > "$name.zip"
unzip -d "$name" "$name.zip"
done
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v1.35
with:
commit: ${{ github.event.workflow_run.head_sha }}
check_name: Test Results
event_file: artifacts/event-file/event.json
event_name: ${{ github.event.workflow_run.event }}
files: "artifacts/**/*.xml"