Skip to content

Commit

Permalink
Re-enable ccache and pick up latest Boost.CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeking3 committed Dec 27, 2024
1 parent eb4276f commit b0cdffc
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

timeout-minutes: 120
runs-on: ${{matrix.os}}
env: {B2_USE_CCACHE: 0}
env: {B2_USE_CCACHE: 1}

steps:
- name: Setup environment
Expand Down Expand Up @@ -156,8 +156,8 @@ jobs:
- name: Install packages
if: startsWith(matrix.os, 'ubuntu')
run: |
SOURCE_KEYS=(${{join(matrix.source_keys, '" "')}})
SOURCES=(${{join(matrix.sources, '" "')}})
SOURCE_KEYS=("${{join(matrix.source_keys, '" "')}}")
SOURCES=("${{join(matrix.sources, '" "')}}")
# Add this by default
SOURCE_KEYS+=('http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x1E9377A2BA9EF27F')
SOURCES+=(ppa:ubuntu-toolchain-r/test)
Expand Down Expand Up @@ -225,18 +225,16 @@ jobs:

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

- name: Upload coverage
if: matrix.coverage
uses: codecov/codecov-action@v5
with:
disable_search: true
fail_ci_if_error: true
files: ./coverage.info
name: github-actions
files: coverage.info
name: Github Actions
token: ${{secrets.CODECOV_TOKEN}}
verbose: true

Expand Down

0 comments on commit b0cdffc

Please sign in to comment.