Skip to content

Commit 0bf6279

Browse files
leoparenteclaude
andcommitted
fix: correct conan export path in build_cross.yml
The repo is checked out into \$GITHUB_WORKSPACE/src (actions/checkout with path: src), so the conan/corrade recipe is at src/conan/corrade/, not conan/corrade/. Update both the export path and the cache key hashFiles pattern accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 18b8bc5 commit 0bf6279

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build_cross.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ jobs:
119119
uses: actions/cache@v5
120120
with:
121121
path: ${{github.workspace}}/src/build/p/
122-
key: conan-${{ runner.os }}-${{matrix.arch}}-${{ hashFiles('**/conanfile.py', 'conan/corrade/**') }}
122+
key: conan-${{ runner.os }}-${{matrix.arch}}-${{ hashFiles('**/conanfile.py', 'src/conan/corrade/**') }}
123123
restore-keys: conan-${{ runner.os }}-${{matrix.arch}}-
124124

125125
- name: Export local Corrade recipe
126-
run: conan export ${{github.workspace}}/conan/corrade/ --name=corrade --version=cci.20260327
126+
run: conan export ${{github.workspace}}/src/conan/corrade/ --name=corrade --version=cci.20260327
127127

128128
- name: Install dependencies
129129
working-directory: ${{github.workspace}}/src

0 commit comments

Comments
 (0)