From 11e1a24b92a724fecabfca205f67b0ef31050e4f Mon Sep 17 00:00:00 2001 From: badaix Date: Sun, 9 Aug 2020 15:35:22 +0200 Subject: [PATCH] Dump ccache config --- .github/workflows/macos.yml | 2 ++ .github/workflows/ubuntu.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4741fa6e..24d35dee 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -27,6 +27,8 @@ jobs: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} restore-keys: ${{ runner.os }}-ccache- + - name: ccache dump config + run: ccache -p - name: cmake build run: cmake -S . -B build -DBOOST_ROOT=boost_1_73_0 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="$CXXFLAGS -Werror -Wall -Wextra -pedantic -Wno-unused-function -I/usr/local/include" - name: cmake make diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 085a4023..6095a532 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -28,6 +28,8 @@ jobs: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} restore-keys: ${{ runner.os }}-ccache- + - name: ccache dump config + run: ccache -p - name: cmake build run: cmake -S . -B build -DBOOST_ROOT=boost_1_73_0 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="$CXXFLAGS -Werror -Wall -Wextra -pedantic -Wno-unused-function" - name: cmake make