Dump ccache config

This commit is contained in:
badaix 2020-08-09 15:35:22 +02:00
parent 8d81d7becd
commit 11e1a24b92
2 changed files with 4 additions and 0 deletions

View file

@ -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

View file

@ -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