ci(conan): install CMake in Linux container workflow to unblock Debug static build matrix job - #804
Conversation
Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
|
@copilot thanks, this fixed the Linux CI builds. can you also fix the windows builds? |
Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
I’ve pushed a fix in commit |
|
@copilot the windows builds are still failing, under the "Conan create" step it looks like. please analyze the error messages from the failed CI job and attempt to fix. |
Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
Fixed in commit |
|
@copilot the windows build is still broken, seems that the specific compiler version was not found. please assess and configure the windows environment to use an available, supported compiler version. |
…hain Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
Fixed in commit |
|
@copilot windows build is still broken and needs triaging. you have been granted access to trigger the workflows yourself, so please iterate on this until the windows build works. if possible, you can also imitate a build using the same environment before triggering the slow-running multibuild workflow in order to iterate faster. |
Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
Co-authored-by: restenb <40600023+restenb@users.noreply.github.com>
I pushed a follow-up fix in |
restenb
left a comment
There was a problem hiding this comment.
LGTM! Well done, young assistant 👍
The Conan CI matrix job
Linux (Debug, 14, proxyfmu=False, shared=False)failed during dependency build becausecmakewas not available in thegcc:14container. This prevented Conan from building transitive packages (notablyxerces-c/3.2.5) from source.Root cause
pipxanddoxygen, but notcmake.cmake.configure()and exited withcmake: not found.Change
cmaketo the apt packages installed in.github/workflows/ci-conan.ymlfor the Linux job.Impact