forked from keylime/keylime
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1.79 KB
/
submit-HEAD-coverage.yaml
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
name: Upload code coverage for a merged PR to codecov.io
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
name: Submit code coverage from merged PR
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3
- name: Install testing-farm script
run: pip3 -v install tft-cli
- name: Run tests on Testing Farm
run: testing-farm request --context distro=fedora-41 --arch x86_64 --compose Fedora-41 --plan '/e2e-with-revocation' -e UPLOAD_COVERAGE=1 2>&1 | tee tt_output
env:
TESTING_FARM_API_TOKEN: ${{ secrets.TESTING_FARM_API_TOKEN }}
- name: Find PR Packit tests to finish and download coverage.xml file
run: grep -q 'tests passed' tt_output && sleep 20 && scripts/download_packit_coverage.sh --testing-farm-log tt_output
env:
MAX_DURATION: 120
SLEEP_DELAY: 20
- name: List downloaded files
run: ls coverage*
- name: Upload coverage.unittests.xml report to Codecov with GitHub Action
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.unittests.xml
flags: unittests
- name: Upload coverage.testsuite.xml report to Codecov with GitHub Action
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.testsuite.xml
flags: testsuite
- name: Upload coverage.packit.xml report to Codecov with GitHub Action
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.packit.xml
flags: packit-e2e