Skip to content

fix: use runtime OpenSSL algorithm detection to handle missing SM3 support #2992

fix: use runtime OpenSSL algorithm detection to handle missing SM3 support

fix: use runtime OpenSSL algorithm detection to handle missing SM3 support #2992

name: PR code coverage measurement on codecov.io
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
name: Submit code coverage from Packit tests
defaults:
run:
working-directory: scripts
steps:
- uses: actions/checkout@v7
- name: Wait for Packit tests to finish and download e2e_coverage.txt and upstream_coverage.xml files.
run: ./download_packit_coverage.sh
env:
MAX_DURATION: 7200
SLEEP_DELAY: 300
- name: List downloaded files.
run: ls
- name: Upload e2e_coverage.txt report to Codecov with GitHub Action.
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: scripts/e2e_coverage.txt
disable_search: true
flags: e2e-testsuite
- name: Upload upstream_coverage.xml report to Codecov with GitHub Action.
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: scripts/upstream_coverage.xml
disable_search: true
flags: upstream-unit-tests