Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
with:
path: install
name: ${{ matrix.build_type == 'Debug' && 'macos-clang-debug-install' || 'macos-clang-install' }}
- name: Show ccache stats
run: ccache --show-stats
clang-test:
needs:
- clang-build
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
name: ${{ matrix.build_type == 'Debug' &&
format('ubuntu-gcc-debug-install-{0}', matrix.os) ||
format('ubuntu-gcc-install-{0}', matrix.os) }}
- name: Show ccache stats
run: ccache --show-stats
gcc-test:
needs:
- gcc-build
Expand Down Expand Up @@ -153,6 +155,8 @@ jobs:
with:
path: install
name: ubuntu-clang-install-${{ matrix.os }}
- name: Show ccache stats
run: ccache --show-stats
clang-test:
needs:
- clang-build
Expand Down Expand Up @@ -257,6 +261,8 @@ jobs:
with:
path: install
name: ubuntu-clang-sanitizer-install-${{ matrix.os }}
- name: Show ccache stats
run: ccache --show-stats
clang-sanitizer-test:
needs:
- clang-sanitizer-build
Expand Down Expand Up @@ -399,3 +405,5 @@ jobs:
body: |
Coverage report is available for download
[here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
- name: Show ccache stats
run: ccache --show-stats
6 changes: 6 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
with:
path: install
name: ${{ matrix.build_type == 'Debug' && 'windows-msvc-debug-install' || 'windows-msvc-install' }}
- name: Show ccache stats
shell: bash
run: ccache --show-stats
msvc-test:
needs:
- msvc-build
Expand Down Expand Up @@ -117,6 +120,9 @@ jobs:
with:
path: install
name: windows-clang-install
- name: Show ccache stats
shell: bash
run: ccache --show-stats
clang-test:
needs:
- clang-build
Expand Down
Loading