# # Copyright 2021-2023 Ribose Inc. (https://www.ribose.com) # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the "Software"), to deal in # the Software without restriction, including without limitation the rights to # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of # the Software, and to permit persons to whom the Software is furnished to do so, # subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # name: coverage on: push: branches: [ main ] pull_request: workflow_dispatch: concurrency: group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}' cancel-in-progress: true jobs: coverage: runs-on: ubuntu-latest env: CC: gcc CXX: g++ CODECOV_TOKEN: dbb06ac6-97ef-4d04-a0c6-24f7e3d8e1d6 MAKEFLAGS: j4 steps: - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 1 - name: Configure run: | cmake -Bbuild \ -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install \ -DWITH_COVERAGE=ON - name: Build run: cmake --build build - name: Run tests run: ctest --test-dir build --output-on-failure - name: Upload to codecov.io run: | curl -Os https://uploader.codecov.io/latest/linux/codecov curl https://uploader.codecov.io/verification.gpg | gpg --no-default-keyring --keyring trustedkeys.gpg --import curl -Os https://uploader.codecov.io/latest/linux/codecov curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig gpgv codecov.SHA256SUM.sig codecov.SHA256SUM shasum -a 256 -c codecov.SHA256SUM find "build" -type f -name '*.gcno' -exec gcov -p {} + chmod +x codecov ./codecov -t ${{ env.CODECOV_TOKEN }}