Skip to content

Commit 3ef74da

Browse files
committed
fix
1 parent f005fa7 commit 3ef74da

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/build/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ runs:
1313
- name: Configure
1414
shell: bash
1515
run: |
16-
mkdir -p ../build
17-
rm -rf ../build/*
16+
mkdir -p build
17+
rm -rf build/*
1818
cmake --preset release-test-with-ccache-basedir-${{ inputs.compiler }}
1919
- name: Build
2020
shell: bash

.github/workflows/examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/cache/restore@v4
5858
with:
5959
path: ~/.ccache
60-
key: ubuntu-22.04-ccache-${{ matrix.compiler }}-${{steps.ccache_cache_timestamp.outputs.timestamp }}
60+
key: ubuntu-22.04-ccache-${{ matrix.compiler }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
6161
restore-keys: |
6262
ubuntu-22.04-ccache-${{ matrix.compiler }}-
6363
- name: Build

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
uses: actions/cache/restore@v4
107107
with:
108108
path: ~/.ccache
109-
key: ubuntu-22.04-ccache-${{ matrix.compiler }}-${{steps.ccache_cache_timestamp.outputs.timestamp }}
109+
key: ubuntu-22.04-ccache-${{ matrix.compiler }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
110110
restore-keys: |
111111
ubuntu-22.04-ccache-${{ matrix.compiler }}-
112112
- name: Build

0 commit comments

Comments
 (0)