mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 21:42:31 +02:00
Add ccache -s for debugging
This commit is contained in:
parent
23b3773dda
commit
5169cc382b
1 changed files with 6 additions and 1 deletions
7
.github/workflows/pr_build.yml
vendored
7
.github/workflows/pr_build.yml
vendored
|
@ -181,6 +181,7 @@ jobs:
|
|||
shell: bash
|
||||
if: startsWith(matrix.os, 'Ubuntu') || contains(matrix.os, 'Debian') || startsWith(matrix.os, 'macOS')
|
||||
run: |
|
||||
ccache -s
|
||||
if [[ "${{ matrix.os }}" =~ "Ubuntu" || "${{ matrix.os }}" =~ "Debian" ]]; then
|
||||
|
||||
echo "Updating apt repository index"
|
||||
|
@ -235,6 +236,7 @@ jobs:
|
|||
if: always()
|
||||
shell: bash
|
||||
run: |
|
||||
ccache -s
|
||||
if [ "${{ matrix.os }}" == "macOS-10.15" ]; then
|
||||
TAR=gtar
|
||||
else
|
||||
|
@ -254,7 +256,10 @@ jobs:
|
|||
if: matrix.build_type == 'full' || matrix.build_type == 'client'
|
||||
working-directory: build
|
||||
shell: bash
|
||||
run: cmake --build . --config $BUILD_TYPE --target $APP_TARGET_NAME $CMAKE_BUILD_EXTRA
|
||||
run: |
|
||||
ccache -s
|
||||
cmake --build . --config $BUILD_TYPE --target $APP_TARGET_NAME $CMAKE_BUILD_EXTRA
|
||||
ccache -s
|
||||
|
||||
- name: Build Domain Server
|
||||
if: matrix.build_type == 'full'
|
||||
|
|
Loading…
Reference in a new issue