Skip to content

Commit 6cbb7a2

Browse files
committed
Hopefully fix CI
1 parent 278140c commit 6cbb7a2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- main
1212

1313
env:
14-
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
14+
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules2
1515

1616
jobs:
1717
build:
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/cache@v3
2424
with:
25-
path: "**/cpm_modules"
25+
path: "**/cpm_modules2"
2626
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2727

2828
- name: install_boost

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
CTEST_OUTPUT_ON_FAILURE: 1
15-
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
15+
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules2
1616

1717
jobs:
1818
build:
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/cache@v3
2525
with:
26-
path: "**/cpm_modules"
26+
path: "**/cpm_modules2"
2727
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2828

2929
- name: install_boost

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
env:
1414
CTEST_OUTPUT_ON_FAILURE: 1
1515
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
16-
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
16+
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules2
1717

1818
jobs:
1919
build:
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/cache@v3
2626
with:
27-
path: "**/cpm_modules"
27+
path: "**/cpm_modules2"
2828
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2929

3030
- name: install_boost

examples/plain-malloc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14...3.22)
22

33
if(POLICY CMP0167)
4-
cmake_policy(SET CMP0167 NEW)
4+
cmake_policy(SET CMP0167 NEW)
55
endif()
66
project(KitGenBenchExamplePlainMalloc LANGUAGES CXX)
77

0 commit comments

Comments
 (0)