Skip to content

Commit

Permalink
Merge pull request #180 from boostorg/Flamefire-patch-1
Browse files Browse the repository at this point in the history
GHA: Update to macos-12 and improve coverage upload
  • Loading branch information
Flamefire authored May 2, 2024
2 parents 7cc49a8 + 5898950 commit 9d35cc4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
compiler: clang-14, cxxstd: '03,11,14,17,20', os: ubuntu-22.04, stdlib: libc++, install: 'clang-14 libc++-14-dev libc++abi-14-dev' }

# OSX, clang
- { compiler: clang, cxxstd: '03,11,14,17,2a', os: macos-11, sanitize: yes }
- { compiler: clang, cxxstd: '11,14,17,20', os: macos-12, sanitize: yes }

timeout-minutes: 120
runs-on: ${{matrix.os}}
Expand Down Expand Up @@ -223,9 +223,21 @@ jobs:
B2_FLAGS: boost.nowide.lfs=no
run: ci/build.sh

- name: Upload coverage
- name: Collect coverage
if: matrix.coverage
run: ci/codecov.sh "upload"
env:
BOOST_CI_CODECOV_IO_UPLOAD: skip

- name: Upload coverage
if: matrix.coverage
uses: codecov/codecov-action@v4
with:
disable_search: true
file: coverage.info
name: Github Actions
token: ${{secrets.CODECOV_TOKEN}}
verbose: true

- name: Run coverity
if: matrix.coverity && github.event_name == 'push' && (github.ref_name == 'develop' || github.ref_name == 'master')
Expand Down

0 comments on commit 9d35cc4

Please sign in to comment.