1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

cache CPM.cmake dependencies

This commit is contained in:
Lars Melchior 2021-01-20 18:08:08 +01:00
parent cc810d0ea2
commit e8d386c823
7 changed files with 102 additions and 67 deletions

View file

@ -12,6 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: Install dependencies
run: |
brew install doxygen
@ -19,7 +24,7 @@ jobs:
- name: Build
run: |
cmake -Hdocumentation -Bbuild
cmake -Sdocumentation -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules
cmake --build build --target GenerateDocs
- name: Publish

View file

@ -17,21 +17,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: build and install library
run: |
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
sudo cmake --build build --target install
rm -rf build
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild -DTEST_INSTALLED_VERSION=1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: build
run: cmake --build build --config Debug -j4
- name: build and install library
run: |
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
sudo cmake --build build --target install
rm -rf build
- name: test
run: |
cd build
ctest --build-config Debug
- name: configure
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules -DTEST_INSTALLED_VERSION=1
- name: build
run: cmake --build build --config Debug -j4
- name: test
run: |
cd build
ctest --build-config Debug

View file

@ -13,19 +13,24 @@ env:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild -DCMAKE_BUILD_TYPE=Debug
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: build
run: cmake --build build -j4
- name: configure
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules -DCMAKE_BUILD_TYPE=Debug
- name: test
run: |
cd build
ctest --build-config Debug
- name: build
run: cmake --build build -j4
- name: test
run: |
cd build
ctest --build-config Debug

View file

@ -14,13 +14,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Hstandalone -Bbuild -DCMAKE_BUILD_TYPE=Debug
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: build
run: cmake --build build -j4
- name: configure
run: cmake -Sstandalone -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_BUILD_TYPE=Debug
- name: run
run: ./build/Greeter
- name: build
run: cmake --build build -j4
- name: run
run: ./build/Greeter

View file

@ -14,15 +14,20 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Install format dependencies
run: |
brew install clang-format
pip3 install cmake_format==0.6.11 pyyaml
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: configure
run: cmake -Htest -Bbuild
- name: Install format dependencies
run: |
brew install clang-format
pip3 install cmake_format==0.6.11 pyyaml
- name: check style
run: cmake --build build --target check-format
- name: configure
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules
- name: check style
run: cmake --build build --target check-format

View file

@ -18,18 +18,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug
- uses: actions/checkout@v1
- name: build
run: cmake --build build -j4
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: test
run: |
cd build
ctest --build-config Debug
- name: configure
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules -DENABLE_TEST_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug
- name: collect code coverage
run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
- name: build
run: cmake --build build -j4
- name: test
run: |
cd build
ctest --build-config Debug
- name: collect code coverage
run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

View file

@ -17,15 +17,20 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/cpm_modules'
key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: build
run: cmake --build build --config Debug -j4
- name: configure
run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules
- name: test
run: |
cd build
ctest --build-config Debug
- name: build
run: cmake --build build --config Debug -j4
- name: test
run: |
cd build
ctest --build-config Debug