Skip to content

Commit fc16118

Browse files
leoparenteclaude
andcommitted
fix: run conan export from src/ in build_cross.yml to match conan home
.conanrc sets conan_home=./build (relative). The pkvisor job checks out into src/ and runs conan install with working-directory=src, so its conan home resolves to src/build/. The export step was running from the workspace root, writing to a different conan home (build/ instead of src/build/), making the recipe invisible to conan install. Fix: add working-directory: src to the export step so both steps share the same conan home. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d51f546 commit fc16118

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build_cross.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ jobs:
123123
restore-keys: conan-${{ runner.os }}-${{matrix.arch}}-
124124

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

128129
- name: Install dependencies
129130
working-directory: ${{github.workspace}}/src

0 commit comments

Comments
 (0)