forked from magma/magma
-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (80 loc) · 2.83 KB
/
unit-test-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
name: Cloud Unit Test Results
on: # yamllint disable-line rule:truthy
workflow_run:
workflows:
- cloud-workflow
- feg-workflow
- agw-workflow
- golang-build-test
- nms-workflow
types:
- completed
jobs:
skip_check:
name: Job to retrieve the value in pr/skipped file
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- name: 'Download artifact'
uses: actions/[email protected]
with:
script: |
var artifacts = await github.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{github.event.workflow_run.id }},
});
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "pr"
})[0];
var download = await github.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data));
- run: unzip pr.zip
- name: Check if the workflow is skipped
id: skip_check
uses: actions/github-script@v3
with:
script: |
var fs = require('fs');
var skipFlag = fs.readFileSync('./skipped');
if( skipFlag == 'true' ) {
core.setOutput('should_skip', 'true');
}
else {
core.setOutput('should_skip', 'false');
}
unit-test-results:
name: Upload unit test for ${{ github.event.workflow.name }}
needs: skip_check
runs-on: ubuntu-latest
if: >
github.event.workflow_run.conclusion != 'skipped' &&
github.event.workflow_run.head_repository.full_name != github.repository &&
needs.skip_check.outputs.should_skip == 'false'
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 Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
check_name: ${{ github.event.workflow.name }}
commit: ${{ github.event.workflow_run.head_sha }}
files: "artifacts/**/*.xml"