conan-center-index
conan-center-index copied to clipboard
imgui: make backends available as optional components, convert -docking versions into an option
Summary
Changes to recipe: imgui/[*]
Motivation
There are two major issues with the current approach of building only the core imgui.cpp and no backends or other optional components:
- Difficult to use. The consuming projects will need to inject the
<package_folder>/res/...source files into the build system in order to use the optional components. This is manageable but very inconvenient compared to the alternative of linking against a suitable component target. - Tends to break shared builds. Imgui uses a
IMGUI_APIexport macro for shared builds and visibility handling. The users need to take care that the core library symbols provided by the imgui recipe and the optional components built by the consuming projects have the correctIMGUI_APIcorresponding the static/shared build of either project. This is tricky to manage and easy to mess up.
In addition to that, the current recipe does not provide a way to modify imconfig.h. These values cannot be changed after the core library has already been built.
Another minor benefit is that the Conan and system dependencies for the optional components are handled by package_info() in the imgui recipe and don't need to be duplicated in the consuming projects.
Details
The PR aims to be backwards-compatible. imgui::imgui CMake target still links against the core library only. All backends can be disabled altogether by setting build_backends=False for the old behavior.
These changes are not without their downsides:
- Significantly more complex recipe. Imgui famously not providing any kind of build system outside of examples does not help in this regard.
- Potential for option conflicts. The CCI recipe will likely need to build with most if not all backends enabled (or at the very least OpenGL and Vulkan ones) to avoid conflicts on CCI itself.
- Recipes listing
imgui::imguias acpp_info.requireseither explicitly or implicitly no longer link against just the core lib but against all the optional components as well.
Given these downsides, I was initially hesitant to open this PR and shelved it for a while, but after hitting a wall in the Ogre PR (#21073) when trying to unvendor ImGui there, this PR started to look a lot more reasonable. That is, Ogre expects the optional Freetype component to be available and building it as part of the Ogre recipe hits the shared build issues listed above.
Test build with nearly all options enabled (only DirectX 11 and DirectX 12 disabled): https://github.com/conan-io/conan-center-index/pull/25325#issuecomment-2370959006
- [x] Read the contributing guidelines
- [x] Checked that this PR is not a duplicate: list of PRs by recipe
- [x] Tested locally with at least one configuration using a recent version of Conan
Conan v1 pipeline :x:
Failure in build 1 (cffaf4ec4186c3d22dd78aa2de5b0e683b71800a):
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: CI failed to create some packages (All logs)
Logs for packageID
d7a92f39a4599e378b64ae889ffeafeb28c4ed01:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] ^ In file included from /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glfw.cpp:77:0: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glfw.cpp: In function ‘ImVec2 ImGui_ImplGlfw_GetWindowSize(ImGuiViewport*)’: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glfw.cpp:1164:37: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ return ImVec2((float)w, (float)h); ^ In file included from /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glfw.cpp:77:0: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glut.cpp: In function ‘void ImGui_ImplGLUT_Shutdown()’: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glut.cpp:200:30: error: ‘nullptr’ was not declared in this scope io.BackendPlatformName = nullptr; ^ /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glut.cpp: In function ‘void ImGui_ImplGLUT_ReshapeFunc(int, int)’: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glut.cpp:298:47: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ io.DisplaySize = ImVec2((float)w, (float)h); ^ In file included from /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/backends/imgui_impl_glut.cpp:37:0: /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/src/imgui.h:281:8: note: candidate expects 1 argument, 2 provided make[2]: *** [CMakeFiles/imgui-glut.dir/backends/imgui_impl_glut.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-glut.dir/all] Error 2 make[2]: *** [CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-glfw.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.90.8-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.8-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.8-docking: ERROR: Package 'd7a92f39a4599e378b64ae889ffeafeb28c4ed01' build failed imgui/1.90.8-docking: WARN: Build folder /home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/build/Release ERROR: imgui/1.90.8-docking: Error in build() method, line 229 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/97562/bcded/.conan/data/imgui/1.90.8-docking/_/_/build/d7a92f39a4599e378b64ae889ffeafeb28c4ed01/build/Release" '--' '-j3' -
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 1 (cffaf4ec4186c3d22dd78aa2de5b0e683b71800a):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7: CI failed to create some packages (All logs)
Logs for packageID
6eb8e9deae0bba9260e6c9f597f25dcb2a6258eb:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] opengl/system#4df6fecde4084386beded3ed0e56e4ea:da39a3ee5e6b4b0d3255bfef95601890afd80709#0ba8627bd47edc3a501e8f0eb9a79e5e - Download (conan-center) openssl/3.3.2#9f9f130d58e7c13e76bb8a559f0a6a8b:ba0c965640dfc9185194d683d05bfbe6419b47a3#760594d9ffd75bbc5d7930b108bcf782 - Download (conan-center) opus/1.4#3c98a306d127dce1e74d58a0e2c850b5:4df585f63ebee00f46c117ab89b69f931e4b3d26#0b823d39c2fa4170443ad5f0709471bb - Download (conan-center) pulseaudio/14.2#30afeff38a7770cb9cda17a66da49a19:34cb39aa4c279be4ba49169e2dd1fcb5b4539baf#087934c6b2e229d2df0ff9821cc25f55 - Download (conan-center) sdl/2.30.6#b7562c6bb0ba38f826f7012480c17ff4:0a2b9e4b52c12bf1afec56bf3526c8c204d28dfb#63e5e0af4e8d67196c55b669710eb7c7 - Download (conan-center) vorbis/1.3.7#37e58f52e59a6232199b34ef402714a6:a7b68b4d31174eb97fff2f0a35ab28a9c1fd5e42#c6d1add45a7ed260effeef5dcb198e98 - Download (conan-center) vulkan-headers/1.3.290.0#770b96af353b6ce5f53576147b3d2aec:da39a3ee5e6b4b0d3255bfef95601890afd80709#92b683ea8b2aa96f9c9bb5f7b3d57c21 - Download (conan-center) vulkan-loader/1.3.290.0#9c13defe99739eb8f562cf0ca095795e:3161865ab91a0122ba5b0358d4cc73bfc611a600#8efd2569fe88e5f65f929ab7333a5f96 - Download (conan-center) wayland/1.22.0#284b56bdbe57868770f46100784e3b4d:9ef61cfe051f69b8cce843b72e11408e15171fab#2f4a3f922deed888a7661360b8094ee3 - Download (conan-center) xkbcommon/1.6.0#dababe41c183634d88ad56ef4740c045:24060eb1e52f1ce13c6102f08ed64ce54503c767#8f95f4dbcb9c6bc629e96e8c12cd0c91 - Download (conan-center) xkeyboard-config/system#57dd5c08e72ab06bc2ee0e756c0a2c41:da39a3ee5e6b4b0d3255bfef95601890afd80709#0ba8627bd47edc3a501e8f0eb9a79e5e - Download (conan-center) xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79:da39a3ee5e6b4b0d3255bfef95601890afd80709#f6477c9b9eaafe88df13906bad42fbb4 - Download (conan-center) xorg-proto/2022.2#0088fff0ee788a2fa8f22a9704ea941a:da39a3ee5e6b4b0d3255bfef95601890afd80709#ecec1471507ce446507460dafdec9c8b - Download (conan-center) xorg/system#98f82cb669e4ebc6b4d9d8a4f3f1faf4:da39a3ee5e6b4b0d3255bfef95601890afd80709#0ba8627bd47edc3a501e8f0eb9a79e5e - Download (conan-center) xz_utils/5.4.5#b885d1d79c9d30cff3803f7f551dbe66:b647c43bfefae3f830561ca202b6cfd935b56205#3abd876e19d49ed14b83cd115ff1e17c - Download (conan-center) zlib/1.3.1#f52e03ae3d251dec704634230cd806a2:b647c43bfefae3f830561ca202b6cfd935b56205#6b307bbcbae23635c4006543ffdbf3ef - Download (conan-center) Build requirements Skipped binaries autoconf/2.71, automake/1.16.5, bison/3.8.2, cmake/3.30.1, expat/2.6.3, flex/2.6.4, gettext/0.21, gnu-config/cci.20210814, libffi/3.4.4, libiconv/1.17, libtool/2.4.7, libxml2/2.12.7, m4/1.4.19, meson/1.2.2, meson/1.2.3, meson/1.3.0, meson/1.3.2, meson/1.4.0, ninja/1.12.1, pkgconf/2.0.3, pkgconf/2.1.0, wayland-protocols/1.33, wayland/1.22.0, xorg-macros/1.19.3, yasm/1.3.0, zlib/1.3.1 ERROR: Missing binary: libglvnd/1.7.0:82ec64116c96793c6d48a674e6c20a26af1267d2 libglvnd/1.7.0: WARN: Can't find a 'libglvnd/1.7.0' package binary '82ec64116c96793c6d48a674e6c20a26af1267d2' for the configuration: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.version=11 os=Linux [options] asm=True dispatch_tls=True egl=True entrypoint_patching=True gles1=True gles2=True glx=True headers=True tls=True x11=True [requires] xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79:da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg-proto/2022.2#0088fff0ee788a2fa8f22a9704ea941a:da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg/system ERROR: Missing prebuilt package for 'libglvnd/1.7.0'. You can try: - List all available packages using 'conan list "libglvnd/1.7.0:*" -r=remote' - Explain missing binaries: replace 'conan install ...' with 'conan graph explain ...' - Try to build locally from sources using the '--build=libglvnd/1.7.0' argument More Info at 'https://docs.conan.io/2/knowledge/faq.html#error-missing-prebuilt-package' -
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 2 (3132e810a74784c8e281553e942f1bacc7a2cebc):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9: CI failed to create some packages (All logs)
Logs for packageID
44110f6ae14896333c15da9f08d8a0389c5fe0a0:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate expects 1 argument, 2 provided make[2]: *** [CMakeFiles/imgui-opengl3.dir/backends/imgui_impl_opengl3.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl3.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp: In function ‘ImGui_ImplOpenGL2_Data* ImGui_ImplOpenGL2_GetBackendData()’: /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:80:107: error: ‘nullptr’ was not declared in this scope return ImGui::GetCurrentContext() ? (ImGui_ImplOpenGL2_Data*)ImGui::GetIO().BackendRendererUserData : nullptr; ^ /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_Shutdown()’: /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:105:30: error: ‘nullptr’ was not declared in this scope io.BackendRendererName = nullptr; ^ make[2]: *** [CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o] Error 1 /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData*)’: /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:217:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ make[1]: *** [CMakeFiles/imgui-glfw.dir/all] Error 2 /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:218:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/src/imgui.h:276:8: note: candidate expects 1 argument, 2 provided make[2]: *** [CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl2.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.90.9: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.9: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.9: ERROR: Package '44110f6ae14896333c15da9f08d8a0389c5fe0a0' build failed imgui/1.90.9: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/build/Release ERROR: imgui/1.90.9: Error in build() method, line 229 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99196/beacf/.conan/data/imgui/1.90.9/_/_/build/44110f6ae14896333c15da9f08d8a0389c5fe0a0/build/Release" '--' '-j3' -
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 2 (3132e810a74784c8e281553e942f1bacc7a2cebc):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: CI failed to create some packages (All logs)
Logs for packageID
6c8d938f754da06003c93f0b1e963c59ac910fa8:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] -- Conan: Component target declared 'xkbcommon::xkbcli-interactive-wayland' -- Conan: Component target declared 'xkbcommon::libxkbcommon-x11' -- Conan: Target declared 'xkbcommon::xkbcommon' -- Conan: Target declared 'xkeyboard-config::xkeyboard-config' -- Conan: Component target declared 'wayland::wayland-scanner' -- Conan: Component target declared 'wayland::wayland-server' -- Conan: Component target declared 'wayland::wayland-client' -- Conan: Component target declared 'wayland::wayland-egl-backend' -- Conan: Component target declared 'wayland::wayland-cursor' -- Conan: Component target declared 'wayland::wayland-egl' -- Conan: Target declared 'wayland::wayland' -- Conan: Target declared 'libffi::libffi' -- Conan: Target declared 'LibXml2::LibXml2' -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/88362/cbfaf/p/libxm0afc3c271244f/p/lib/cmake/conan-official-libxml2-variables.cmake' -- Conan: Target declared 'expat::expat' -- Conan: Target declared 'egl::egl' -- Conan: Component target declared 'libunwind::unwind' -- Conan: Component target declared 'libunwind::generic' -- Conan: Component target declared 'libunwind::setjmp' -- Conan: Component target declared 'libunwind::ptrace' -- Conan: Component target declared 'libunwind::coredump' -- Conan: Target declared 'libunwind::libunwind' -- Conan: Target declared 'LibLZMA::LibLZMA' -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/88362/cbfaf/p/xz_ute24eea7d0b168/p/lib/cmake/conan-official-xz_utils-variables.cmake' -- Conan: Target declared 'opengl::opengl' -- Conan: Target declared 'Vulkan::Loader' -- Conan: Target declared 'glfw' -- Configuring done -- Generating done -- Build files have been written to: /home/conan/workspace/prod-v2/bsr/cci-ec687624/recipes/imgui/all/test_package/build/gcc-11-x86_64-17-release imgui/1.90.5-docking (test package): Running CMake.build() imgui/1.90.5-docking (test package): RUN: cmake --build "/home/conan/workspace/prod-v2/bsr/cci-ec687624/recipes/imgui/all/test_package/build/gcc-11-x86_64-17-release" -- -j3 Scanning dependencies of target test_package [ 50%] Building CXX object CMakeFiles/test_package.dir/test_package.cpp.o In file included from /home/conan/workspace/prod-v2/bsr/cci-ec687624/recipes/imgui/all/test_package/test_package.cpp:53: /home/conan/workspace/prod-v2/bsr/88362/cbfaf/p/b/imgui524e3e142f7ef/p/include/imgui_impl_vulkan.h:54:10: fatal error: vulkan/vulkan.h: No such file or directory 54 | #include <vulkan/vulkan.h> | ^~~~~~~~~~~~~~~~~ compilation terminated. CMakeFiles/test_package.dir/build.make:62: recipe for target 'CMakeFiles/test_package.dir/test_package.cpp.o' failed make[2]: *** [CMakeFiles/test_package.dir/test_package.cpp.o] Error 1 CMakeFiles/Makefile2:75: recipe for target 'CMakeFiles/test_package.dir/all' failed make[1]: *** [CMakeFiles/test_package.dir/all] Error 2 Makefile:83: recipe for target 'all' failed make: *** [all] Error 2 ERROR: imgui/1.90.5-docking (test package): Error in build() method, line 55 cmake.build() ConanException: Error 2 while executing -
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 3 (3a803d1453cb0e5f7c13586f5e79bba64b540e7f):
-
imgui/1.91.0: CI failed to create some packages (All logs)
Logs for packageID
874bfee40d121ee848f2bd80aa86612e2a8b6133:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] const GLchar* vertex_shader = nullptr; ^ make[2]: *** [CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-glfw.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... make[2]: *** [CMakeFiles/imgui-opengl3.dir/backends/imgui_impl_opengl3.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl3.dir/all] Error 2 /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘ImGui_ImplOpenGL2_Data* ImGui_ImplOpenGL2_GetBackendData()’: /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:80:107: error: ‘nullptr’ was not declared in this scope return ImGui::GetCurrentContext() ? (ImGui_ImplOpenGL2_Data*)ImGui::GetIO().BackendRendererUserData : nullptr; ^ /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_Shutdown()’: /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:105:30: error: ‘nullptr’ was not declared in this scope io.BackendRendererName = nullptr; ^ /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData*)’: /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:217:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:218:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 1 argument, 2 provided make[2]: *** [CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl2.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0: ERROR: Package '874bfee40d121ee848f2bd80aa86612e2a8b6133' build failed imgui/1.91.0: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release ERROR: imgui/1.91.0: Error in build() method, line 230 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99214/eebbe/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release" '--' '-j3' -
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 3 (3a803d1453cb0e5f7c13586f5e79bba64b540e7f):
-
imgui/1.90.9: CI failed to create some packages (All logs)
Logs for packageID
6c8d938f754da06003c93f0b1e963c59ac910fa8:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] imgui/1.90.9: Package '6c8d938f754da06003c93f0b1e963c59ac910fa8' built imgui/1.90.9: Build folder /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/b/build/Release imgui/1.90.9: Generating the package imgui/1.90.9: Packaging in folder /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p imgui/1.90.9: Calling package() imgui/1.90.9: Running CMake.install() imgui/1.90.9: RUN: cmake --install "/home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/b/build/Release" --prefix "/home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p" -- Install configuration: "Release" -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_glfw.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_opengl2.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_opengl3.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_opengl3_loader.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_sdl2.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_sdlrenderer2.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_impl_vulkan.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-glfw.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-opengl2.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-opengl3.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-sdl2.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-sdlrenderer2.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/lib/libimgui-vulkan.a -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_stdlib.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imconfig.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_internal.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imstb_rectpack.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imstb_textedit.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imstb_truetype.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/include/imgui_export_headers.h -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/Cousine-Regular.ttf -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/DroidSans.ttf -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/Karla-Regular.ttf -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/ProggyClean.ttf -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/ProggyTiny.ttf -- Installing: /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p/res/fonts/Roboto-Medium.ttf imgui/1.90.9: package(): Packaged 2 '.txt' files: LICENSE.txt, README.txt imgui/1.90.9: package(): Packaged 37 '.h' files imgui/1.90.9: package(): Packaged 7 '.a' files imgui/1.90.9: package(): Packaged 24 '.cpp' files imgui/1.90.9: package(): Packaged 1 '.md' file: README.md imgui/1.90.9: package(): Packaged 2 '.mm' files: imgui_impl_metal.mm, imgui_impl_osx.mm imgui/1.90.9: package(): Packaged 6 '.ttf' files imgui/1.90.9: Created package revision 060725754448bb92b4e6eec9b8bf7df0 imgui/1.90.9: Package '6c8d938f754da06003c93f0b1e963c59ac910fa8' created imgui/1.90.9: Full package reference: imgui/1.90.9#681eb978788e46ff8b73e8c184f7d9bd:6c8d938f754da06003c93f0b1e963c59ac910fa8#060725754448bb92b4e6eec9b8bf7df0 imgui/1.90.9: Package folder /home/conan/workspace/prod-v2/bsr/88369/faabe/p/b/imguid22349561d4cb/p ERROR: imgui/1.90.9: Required package 'vulkan-headers' not in component 'requires' -
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 4 (37467621c257c8137833555d445c03a1b8388af3):
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.0: CI failed to create some packages (All logs)
Logs for packageID
874bfee40d121ee848f2bd80aa86612e2a8b6133:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] const GLchar* vertex_shader = nullptr; ^ make[2]: *** [CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-glfw.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... make[2]: *** [CMakeFiles/imgui-opengl3.dir/backends/imgui_impl_opengl3.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl3.dir/all] Error 2 /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘ImGui_ImplOpenGL2_Data* ImGui_ImplOpenGL2_GetBackendData()’: /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:80:107: error: ‘nullptr’ was not declared in this scope return ImGui::GetCurrentContext() ? (ImGui_ImplOpenGL2_Data*)ImGui::GetIO().BackendRendererUserData : nullptr; ^ /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_Shutdown()’: /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:105:30: error: ‘nullptr’ was not declared in this scope io.BackendRendererName = nullptr; ^ /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData*)’: /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:217:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:218:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:43:0: /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:288:8: note: candidate expects 1 argument, 2 provided make[2]: *** [CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl2.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0: ERROR: Package '874bfee40d121ee848f2bd80aa86612e2a8b6133' build failed imgui/1.91.0: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release ERROR: imgui/1.91.0: Error in build() method, line 230 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99234/bfcdc/.conan/data/imgui/1.91.0/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release" '--' '-j3' -
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 4 (37467621c257c8137833555d445c03a1b8388af3):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.85: CI failed to create some packages (All logs)
Logs for packageID
6c8d938f754da06003c93f0b1e963c59ac910fa8:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] -- Conan: Target declared 'expat::expat' -- Conan: Target declared 'egl::egl' -- Conan: Component target declared 'libunwind::unwind' -- Conan: Component target declared 'libunwind::generic' -- Conan: Component target declared 'libunwind::setjmp' -- Conan: Component target declared 'libunwind::ptrace' -- Conan: Component target declared 'libunwind::coredump' -- Conan: Target declared 'libunwind::libunwind' -- Conan: Target declared 'LibLZMA::LibLZMA' -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/88405/dfdca/p/xz_ute24eea7d0b168/p/lib/cmake/conan-official-xz_utils-variables.cmake' -- Conan: Target declared 'Vulkan::Vulkan' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Found Vulkan: 1.3.290.0 (found version "1.3.290.0") -- Configuring done CMake Error at CMakeLists.txt:126 (add_library): Cannot find source file: backends/imgui_impl_sdl2.cpp Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx CMake Error at CMakeLists.txt:134 (add_library): Cannot find source file: backends/imgui_impl_sdlrenderer2.cpp Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx CMake Error at CMakeLists.txt:126 (add_library): No SOURCES given to target: imgui-sdl2 CMake Error at CMakeLists.txt:134 (add_library): No SOURCES given to target: imgui-sdlrenderer2 CMake Generate step failed. Build files cannot be regenerated correctly. imgui/1.85: ERROR: Package '6c8d938f754da06003c93f0b1e963c59ac910fa8' build failed imgui/1.85: WARN: Build folder /home/conan/workspace/prod-v2/bsr/88405/dfdca/p/b/imgui497ed5428e81e/b/build/Release ERROR: imgui/1.85: Error in build() method, line 229 cmake.configure() ConanException: Error 1 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 5 (f8fcc2e0a610db91425ed8b97a78d986e380b445):
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
9bbe9ccc9b3c58a793d19425aa85c847a35e70ba:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] if (bd->PipelineLayout) { vkDestroyPipelineLayout(v->Device, bd->PipelineLayout, v->Allocator); bd->PipelineLayout = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1002:108: error: invalid conversion from ‘void*’ to ‘VkPipeline {aka VkPipeline_T*}’ [-fpermissive] if (bd->Pipeline) { vkDestroyPipeline(v->Device, bd->Pipeline, v->Allocator); bd->Pipeline = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_CreateWindowSwapChain(VkPhysicalDevice, VkDevice, ImGui_ImplVulkanH_Window*, const VkAllocationCallbacks*, int, int, uint32_t)’: /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1274:19: error: invalid conversion from ‘void*’ to ‘VkSwapchainKHR {aka VkSwapchainKHR_T*}’ [-fpermissive] wd->Swapchain = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrame(VkDevice, ImGui_ImplVulkanH_Frame*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1473:15: error: invalid conversion from ‘void*’ to ‘VkFence {aka VkFence_T*}’ [-fpermissive] fd->Fence = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1474:23: error: invalid conversion from ‘void*’ to ‘VkCommandBuffer {aka VkCommandBuffer_T*}’ [-fpermissive] fd->CommandBuffer = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1475:21: error: invalid conversion from ‘void*’ to ‘VkCommandPool {aka VkCommandPool_T*}’ [-fpermissive] fd->CommandPool = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrameSemaphores(VkDevice, ImGui_ImplVulkanH_FrameSemaphores*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1485:64: error: invalid conversion from ‘void*’ to ‘VkSemaphore {aka VkSemaphore_T*}’ [-fpermissive] fsd->ImageAcquiredSemaphore = fsd->RenderCompleteSemaphore = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrameRenderBuffers(VkDevice, ImGui_ImplVulkanH_FrameRenderBuffers*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1490:115: error: invalid conversion from ‘void*’ to ‘VkBuffer {aka VkBuffer_T*}’ [-fpermissive] if (buffers->VertexBuffer) { vkDestroyBuffer(device, buffers->VertexBuffer, allocator); buffers->VertexBuffer = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1491:130: error: invalid conversion from ‘void*’ to ‘VkDeviceMemory {aka VkDeviceMemory_T*}’ [-fpermissive] if (buffers->VertexBufferMemory) { vkFreeMemory(device, buffers->VertexBufferMemory, allocator); buffers->VertexBufferMemory = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1492:112: error: invalid conversion from ‘void*’ to ‘VkBuffer {aka VkBuffer_T*}’ [-fpermissive] if (buffers->IndexBuffer) { vkDestroyBuffer(device, buffers->IndexBuffer, allocator); buffers->IndexBuffer = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1493:127: error: invalid conversion from ‘void*’ to ‘VkDeviceMemory {aka VkDeviceMemory_T*}’ [-fpermissive] if (buffers->IndexBufferMemory) { vkFreeMemory(device, buffers->IndexBufferMemory, allocator); buffers->IndexBufferMemory = VK_NULL_HANDLE; } ^ make[2]: *** [CMakeFiles/imgui-vulkan.dir/backends/imgui_impl_vulkan.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-vulkan.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.87: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.87: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.87: ERROR: Package '9bbe9ccc9b3c58a793d19425aa85c847a35e70ba' build failed imgui/1.87: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/build/Release ERROR: imgui/1.87: Error in build() method, line 233 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99267/fceaa/.conan/data/imgui/1.87/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/build/Release" '--' '-j3' -
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 5 (f8fcc2e0a610db91425ed8b97a78d986e380b445):
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.88: CI failed to create some packages (All logs)
Logs for packageID
fcd82aabb156e73de10c5b35431a257ce0cedfd2:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=False[...] -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Conan: Component target declared 'imgui::imgui' -- Conan: Component target declared 'imgui::glfw' -- Conan: Component target declared 'imgui::metal' -- Conan: Component target declared 'imgui::opengl2' -- Conan: Component target declared 'imgui::opengl3' -- Conan: Component target declared 'imgui::osx' -- Conan: Component target declared 'imgui::vulkan' -- Conan: Target declared 'imgui::imgui_all' -- Conan: Target declared 'Vulkan::Loader' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Conan: Target declared 'glfw' -- Conan: Target declared 'opengl::opengl' -- Configuring done -- Generating done -- Build files have been written to: /Users/jenkins/workspace/prod-v2/bsr/cci-d2155407/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release imgui/1.88 (test package): Running CMake.build() imgui/1.88 (test package): RUN: cmake --build "/Users/jenkins/workspace/prod-v2/bsr/cci-d2155407/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release" -- -j8 [ 50%] Building CXX object CMakeFiles/test_package.dir/test_package.cpp.o In file included from /Users/jenkins/workspace/prod-v2/bsr/cci-d2155407/recipes/imgui/all/test_package/test_package.cpp:41: /Users/jenkins/workspace/prod-v2/bsr/88427/cbfce/p/b/imgui2dbcda66b3727/p/include/imgui_impl_osx.h:19:1: error: expected unqualified-id @class NSEvent; ^ /Users/jenkins/workspace/prod-v2/bsr/88427/cbfce/p/b/imgui2dbcda66b3727/p/include/imgui_impl_osx.h:20:1: error: expected unqualified-id @class NSView; ^ /Users/jenkins/workspace/prod-v2/bsr/88427/cbfce/p/b/imgui2dbcda66b3727/p/include/imgui_impl_osx.h:22:44: error: unknown type name 'NSView' IMGUI_IMPL_API bool ImGui_ImplOSX_Init(NSView* _Nonnull view); ^ /Users/jenkins/workspace/prod-v2/bsr/88427/cbfce/p/b/imgui2dbcda66b3727/p/include/imgui_impl_osx.h:24:48: error: unknown type name 'NSView' IMGUI_IMPL_API void ImGui_ImplOSX_NewFrame(NSView* _Nullable view); ^ /Users/jenkins/workspace/prod-v2/bsr/cci-d2155407/recipes/imgui/all/test_package/test_package.cpp:90:5: error: use of undeclared identifier 'ImGui_ImplMetal_Shutdown' ImGui_ImplMetal_Shutdown(); ^ 5 errors generated. make[2]: *** [CMakeFiles/test_package.dir/test_package.cpp.o] Error 1 make[1]: *** [CMakeFiles/test_package.dir/all] Error 2 make: *** [all] Error 2 ERROR: imgui/1.88 (test package): Error in build() method, line 55 cmake.build() ConanException: Error 2 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 6 (b105a726e617293e0e992141bd27e6a57bf3a341):
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: CI failed to create some packages (All logs)
Logs for packageID
9bbe9ccc9b3c58a793d19425aa85c847a35e70ba:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] if (bd->PipelineLayout) { vkDestroyPipelineLayout(v->Device, bd->PipelineLayout, v->Allocator); bd->PipelineLayout = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1005:108: error: invalid conversion from ‘void*’ to ‘VkPipeline {aka VkPipeline_T*}’ [-fpermissive] if (bd->Pipeline) { vkDestroyPipeline(v->Device, bd->Pipeline, v->Allocator); bd->Pipeline = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_CreateWindowSwapChain(VkPhysicalDevice, VkDevice, ImGui_ImplVulkanH_Window*, const VkAllocationCallbacks*, int, int, uint32_t)’: /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1242:19: error: invalid conversion from ‘void*’ to ‘VkSwapchainKHR {aka VkSwapchainKHR_T*}’ [-fpermissive] wd->Swapchain = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrame(VkDevice, ImGui_ImplVulkanH_Frame*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1441:15: error: invalid conversion from ‘void*’ to ‘VkFence {aka VkFence_T*}’ [-fpermissive] fd->Fence = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1442:23: error: invalid conversion from ‘void*’ to ‘VkCommandBuffer {aka VkCommandBuffer_T*}’ [-fpermissive] fd->CommandBuffer = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1443:21: error: invalid conversion from ‘void*’ to ‘VkCommandPool {aka VkCommandPool_T*}’ [-fpermissive] fd->CommandPool = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrameSemaphores(VkDevice, ImGui_ImplVulkanH_FrameSemaphores*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1453:64: error: invalid conversion from ‘void*’ to ‘VkSemaphore {aka VkSemaphore_T*}’ [-fpermissive] fsd->ImageAcquiredSemaphore = fsd->RenderCompleteSemaphore = VK_NULL_HANDLE; ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp: In function ‘void ImGui_ImplVulkanH_DestroyFrameRenderBuffers(VkDevice, ImGui_ImplVulkanH_FrameRenderBuffers*, const VkAllocationCallbacks*)’: /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1458:115: error: invalid conversion from ‘void*’ to ‘VkBuffer {aka VkBuffer_T*}’ [-fpermissive] if (buffers->VertexBuffer) { vkDestroyBuffer(device, buffers->VertexBuffer, allocator); buffers->VertexBuffer = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1459:130: error: invalid conversion from ‘void*’ to ‘VkDeviceMemory {aka VkDeviceMemory_T*}’ [-fpermissive] if (buffers->VertexBufferMemory) { vkFreeMemory(device, buffers->VertexBufferMemory, allocator); buffers->VertexBufferMemory = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1460:112: error: invalid conversion from ‘void*’ to ‘VkBuffer {aka VkBuffer_T*}’ [-fpermissive] if (buffers->IndexBuffer) { vkDestroyBuffer(device, buffers->IndexBuffer, allocator); buffers->IndexBuffer = VK_NULL_HANDLE; } ^ /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/src/backends/imgui_impl_vulkan.cpp:1461:127: error: invalid conversion from ‘void*’ to ‘VkDeviceMemory {aka VkDeviceMemory_T*}’ [-fpermissive] if (buffers->IndexBufferMemory) { vkFreeMemory(device, buffers->IndexBufferMemory, allocator); buffers->IndexBufferMemory = VK_NULL_HANDLE; } ^ make[2]: *** [CMakeFiles/imgui-vulkan.dir/backends/imgui_impl_vulkan.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-vulkan.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.86: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.86: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.86: ERROR: Package '9bbe9ccc9b3c58a793d19425aa85c847a35e70ba' build failed imgui/1.86: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/build/Release ERROR: imgui/1.86: Error in build() method, line 233 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99286/faabe/.conan/data/imgui/1.86/_/_/build/9bbe9ccc9b3c58a793d19425aa85c847a35e70ba/build/Release" '--' '-j3' -
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 6 (b105a726e617293e0e992141bd27e6a57bf3a341):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: CI failed to create some packages (All logs)
Logs for packageID
b43d820ba61e710adb363f9c967c25206cd7b271:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=False[...] imgui/1.90.7-docking (test package): Running CMake.configure() imgui/1.90.7-docking (test package): RUN: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/Users/jenkins/workspace/prod-v2/bsr/cci-8983d57a/recipes/imgui/all/test_package" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/Users/jenkins/workspace/prod-v2/bsr/cci-8983d57a/recipes/imgui/all/test_package" -- Using Conan toolchain: /Users/jenkins/workspace/prod-v2/bsr/cci-8983d57a/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release/generators/conan_toolchain.cmake -- Conan toolchain: Defining architecture flag: -m64 -- Conan toolchain: Defining libcxx as C++ flags: -stdlib=libc++ -- Conan toolchain: C++ Standard 17 with extensions OFF -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Conan: Component target declared 'imgui::imgui' -- Conan: Component target declared 'imgui::glfw' -- Conan: Component target declared 'imgui::metal' -- Conan: Component target declared 'imgui::opengl2' -- Conan: Component target declared 'imgui::opengl3' -- Conan: Component target declared 'imgui::osx' -- Conan: Component target declared 'imgui::sdl2' -- Conan: Component target declared 'imgui::sdlrenderer2' -- Conan: Component target declared 'imgui::vulkan' -- Conan: Target declared 'imgui::imgui_all' -- Conan: Component target declared 'SDL2::SDL2' -- Conan: Component target declared 'SDL2::SDL2main' -- Conan: Target declared 'Vulkan::Loader' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Conan: Target declared 'glfw' -- Conan: Target declared 'opengl::opengl' -- The OBJCXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting OBJCXX compiler ABI info -- Detecting OBJCXX compiler ABI info - done -- Check for working OBJCXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped CMake Error at CMakeLists.txt:14 (target_sources): Cannot specify sources for target "test_package_objcxx" which is not built by this project. CMake Error at CMakeLists.txt:15 (target_link_libraries): Cannot specify link libraries for target "test_package_objcxx" which is not built by this project. -- Configuring incomplete, errors occurred! See also "/Users/jenkins/workspace/prod-v2/bsr/cci-8983d57a/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release/CMakeFiles/CMakeOutput.log". ERROR: imgui/1.90.7-docking (test package): Error in build() method, line 54 cmake.configure() ConanException: Error 1 while executing -
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 7 (57dc33522c09502c5e9526b4e3d6e70dfb99a50c):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: CI failed to create some packages (All logs)
Logs for packageID
874bfee40d121ee848f2bd80aa86612e2a8b6133:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_Shutdown()’: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:115:30: error: ‘nullptr’ was not declared in this scope io.BackendRendererName = nullptr; ^ /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData*)’: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:226:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:44:0: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:227:127: error: no matching function for call to ‘ImVec2::ImVec2(float, float)’ ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y); ^ In file included from /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:44:0: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2() struct ImVec2 ^ /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate expects 0 arguments, 2 provided /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate: ImVec2::ImVec2(const ImVec2&) /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:281:8: note: candidate expects 1 argument, 2 provided /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp: In function ‘void ImGui_ImplOpenGL2_RenderWindow(ImGuiViewport*, void*)’: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:320:59: error: no matching function for call to ‘ImVec4::ImVec4(float, float, float, float)’ ImVec4 clear_color = ImVec4(0.0f, 0.0f, 0.0f, 1.0f); ^ In file included from /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/backends/imgui_impl_opengl2.cpp:44:0: /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:294:8: note: candidate: ImVec4::ImVec4() struct ImVec4 ^ /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:294:8: note: candidate expects 0 arguments, 4 provided /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:294:8: note: candidate: ImVec4::ImVec4(const ImVec4&) /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/src/imgui.h:294:8: note: candidate expects 1 argument, 4 provided make[2]: *** [CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o] Error 1 make[1]: *** [CMakeFiles/imgui-opengl2.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.90.8-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.8-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.8-docking: ERROR: Package '874bfee40d121ee848f2bd80aa86612e2a8b6133' build failed imgui/1.90.8-docking: WARN: Build folder /home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release ERROR: imgui/1.90.8-docking: Error in build() method, line 233 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/99301/debbd/.conan/data/imgui/1.90.8-docking/_/_/build/874bfee40d121ee848f2bd80aa86612e2a8b6133/build/Release" '--' '-j3' -
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 7 (57dc33522c09502c5e9526b4e3d6e70dfb99a50c):
- imgui/1.89.9-docking:
Error running command
conan remote add c3i_PR-v2-25325 https://c3i.jfrog.io/c3i/api/conan/c3i_PR-v2-25325
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 8 (97ebbb9a77e24898cf17ce12a5cddfe160bba9bb):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
e1ef6a18f460a275aed80bd7e328922b71f69848:[settings] arch=armv8 build_type=Debug compiler=apple-clang compiler.libcxx=libc++ compiler.version=13.0 os=Macos [options] imgui:shared=False[...] -- Conan: Component target declared 'imgui::osx' -- Conan: Component target declared 'imgui::vulkan' -- Conan: Target declared 'imgui::imgui_all' -- Conan: Target declared 'glfw' -- Conan: Target declared 'opengl::opengl' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Conan: Target declared 'Vulkan::Loader' -- The OBJCXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting OBJCXX compiler ABI info -- Detecting OBJCXX compiler ABI info - done -- Check for working OBJCXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped -- Configuring done -- Generating done -- Build files have been written to: /Users/jenkins/workspace/prod-v1/bsr/cci-82d5eac8/recipes/imgui/all/test_package/build/Debug imgui/1.87 (test package): CMake command: cmake --build "/Users/jenkins/workspace/prod-v1/bsr/cci-82d5eac8/recipes/imgui/all/test_package/build/Debug" '--' '-j8' ----Running------ > cmake --build "/Users/jenkins/workspace/prod-v1/bsr/cci-82d5eac8/recipes/imgui/all/test_package/build/Debug" '--' '-j8' ----------------- [ 25%] Building OBJCXX object CMakeFiles/test_package_objcxx.dir/test_package.mm.o [ 50%] Building CXX object CMakeFiles/test_package.dir/test_package.cpp.o [ 75%] Linking OBJCXX executable test_package_objcxx [100%] Linking CXX executable test_package [100%] Built target test_package CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 Undefined symbols for architecture arm64: "_OBJC_CLASS_$_GCController", referenced from: objc-class-ref in libimgui-osx.a(imgui_impl_osx.mm.o) ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [test_package_objcxx] Error 1 make[1]: *** [CMakeFiles/test_package_objcxx.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.87 (test package): WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.87 (test package): WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior ERROR: imgui/1.87 (test package): Error in build() method, line 55 cmake.build() ConanException: Error 2 while executing cmake --build "/Users/jenkins/workspace/prod-v1/bsr/cci-82d5eac8/recipes/imgui/all/test_package/build/Debug" '--' '-j8' -
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 8 (97ebbb9a77e24898cf17ce12a5cddfe160bba9bb):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: CI failed to create some packages (All logs)
Logs for packageID
fcd82aabb156e73de10c5b35431a257ce0cedfd2:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=False[...] -- Conan toolchain: Defining libcxx as C++ flags: -stdlib=libc++ -- Conan toolchain: C++ Standard 17 with extensions OFF -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Conan: Component target declared 'imgui::imgui' -- Conan: Component target declared 'imgui::glfw' -- Conan: Component target declared 'imgui::metal' -- Conan: Component target declared 'imgui::opengl2' -- Conan: Component target declared 'imgui::opengl3' -- Conan: Component target declared 'imgui::osx' -- Conan: Component target declared 'imgui::vulkan' -- Conan: Target declared 'imgui::imgui_all' -- Conan: Target declared 'Vulkan::Loader' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Conan: Target declared 'glfw' -- Conan: Target declared 'opengl::opengl' -- The OBJCXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting OBJCXX compiler ABI info -- Detecting OBJCXX compiler ABI info - done -- Check for working OBJCXX compiler: /Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped -- Configuring done -- Generating done -- Build files have been written to: /Users/jenkins/workspace/prod-v2/bsr/cci-9bba444e/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release imgui/1.86 (test package): Running CMake.build() imgui/1.86 (test package): RUN: cmake --build "/Users/jenkins/workspace/prod-v2/bsr/cci-9bba444e/recipes/imgui/all/test_package/build/apple-clang-13-x86_64-17-release" -- -j8 [ 50%] Building OBJCXX object CMakeFiles/test_package_objcxx.dir/test_package.mm.o [ 50%] Building CXX object CMakeFiles/test_package.dir/test_package.cpp.o [ 75%] Linking OBJCXX executable test_package_objcxx [100%] Linking CXX executable test_package Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_GCController", referenced from: objc-class-ref in libimgui-osx.a(imgui_impl_osx.mm.o) ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [test_package_objcxx] Error 1 make[1]: *** [CMakeFiles/test_package_objcxx.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [100%] Built target test_package make: *** [all] Error 2 ERROR: imgui/1.86 (test package): Error in build() method, line 55 cmake.build() ConanException: Error 2 while executing -
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 9 (18a24c10a9244aa828657a69c43aeb5f8b953af2):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
957180cf56e97dda8436765434deb8d4b6697e6c:[settings] arch=armv8 build_type=Debug compiler=apple-clang compiler.libcxx=libc++ compiler.version=13.0 os=Macos [options] imgui:shared=True[...] _OBJC_CLASS_$_KeyEventResponder in imgui_impl_osx.mm.o "_OBJC_METACLASS_$_NSObject", referenced from: _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImFocusObserver in imgui_impl_osx.mm.o "_OBJC_METACLASS_$_NSView", referenced from: _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o "___NSArray0__struct", referenced from: -[KeyEventResponder validAttributesForMarkedText] in imgui_impl_osx.mm.o "__objc_empty_cache", referenced from: _OBJC_CLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImFocusObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImFocusObserver in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_alloc_init", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_NewFrame(NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSendSuper2", referenced from: -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder keyUp:] in imgui_impl_osx.mm.o "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.87: ERROR: Package '957180cf56e97dda8436765434deb8d4b6697e6c' build failed imgui/1.87: WARN: Build folder /Users/jenkins/workspace/prod-v1/bsr/99515/eabfd/.conan/data/imgui/1.87/_/_/build/957180cf56e97dda8436765434deb8d4b6697e6c/build/Debug ERROR: imgui/1.87: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing cmake --build "/Users/jenkins/workspace/prod-v1/bsr/99515/eabfd/.conan/data/imgui/1.87/_/_/build/957180cf56e97dda8436765434deb8d4b6697e6c/build/Debug" '--' '-j8' -
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 9 (18a24c10a9244aa828657a69c43aeb5f8b953af2):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.86: CI failed to create some packages (All logs)
Logs for packageID
f21072dc76928510c22db0df7a212f377e49294a:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=True[...] CFString in imgui_impl_osx.mm.o CFString in imgui_impl_osx.mm.o CFString in imgui_impl_osx.mm.o CFString in imgui_impl_osx.mm.o CFString in imgui_impl_osx.mm.o ... "___NSArray0__struct", referenced from: -[KeyEventResponder validAttributesForMarkedText] in imgui_impl_osx.mm.o "__objc_empty_cache", referenced from: _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_CLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImFocusObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImFocusObserver in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_alloc_init", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateGamepads() in imgui_impl_osx.mm.o ImGui_ImplOSX_NewFrame(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSend_stret", referenced from: ImGui_ImplOSX_NewFrame(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [100%] Linking OBJCXX shared library libimgui-metal.dylib [100%] Built target imgui-metal make: *** [all] Error 2 imgui/1.86: ERROR: Package 'f21072dc76928510c22db0df7a212f377e49294a' build failed imgui/1.86: WARN: Build folder /Users/jenkins/workspace/prod-v2/bsr/88659/efebe/p/b/imgui8ff58ab34a75c/b/build/Release ERROR: imgui/1.86: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing -
imgui/1.89.9: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 11 (e3799e5359b29a1348470e61eaca0c23a5c8e9a6):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
461a8da4f18bd2232a26dbd05a6405a4f0801cf3:[settings] arch=armv8 build_type=Debug compiler=apple-clang compiler.libcxx=libc++ compiler.version=13.0 os=Macos [options] imgui:shared=True[...] "___CFConstantStringClassReference", referenced from: CFString in imgui_impl_osx.mm.o "___NSArray0__struct", referenced from: -[KeyEventResponder validAttributesForMarkedText] in imgui_impl_osx.mm.o "__objc_empty_cache", referenced from: _OBJC_CLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o "_objc_enumerationMutation", referenced from: ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSendSuper2", referenced from: -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder keyUp:] in imgui_impl_osx.mm.o "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_new", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.2-docking: ERROR: Package '461a8da4f18bd2232a26dbd05a6405a4f0801cf3' build failed imgui/1.91.2-docking: WARN: Build folder /Users/jenkins/workspace/prod-v1/bsr/99624/addac/.conan/data/imgui/1.91.2-docking/_/_/build/461a8da4f18bd2232a26dbd05a6405a4f0801cf3/build/Debug ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing cmake --build "/Users/jenkins/workspace/prod-v1/bsr/99624/addac/.conan/data/imgui/1.91.2-docking/_/_/build/461a8da4f18bd2232a26dbd05a6405a4f0801cf3/build/Debug" '--' '-j8'
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 11 (e3799e5359b29a1348470e61eaca0c23a5c8e9a6):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
649e5abc68de9d383d94683cdcffd1692ec0642a:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=True[...] _OBJC_METACLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o "_objc_enumerationMutation", referenced from: ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSendSuper2", referenced from: -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder keyUp:] in imgui_impl_osx.mm.o "_objc_msgSend_stret", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_NewFrame(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o ImGui_ImplOSX_SetWindowPos(ImGuiViewport*, ImVec2) in imgui_impl_osx.mm.o ImGui_ImplOSX_GetWindowPos(ImGuiViewport*) in imgui_impl_osx.mm.o ... "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_new", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make: *** [all] Error 2 imgui/1.91.2-docking: ERROR: Package '649e5abc68de9d383d94683cdcffd1692ec0642a' build failed imgui/1.91.2-docking: WARN: Build folder /Users/jenkins/workspace/prod-v2/bsr/88732/bbfcf/p/b/imgui1ce1a0f277b30/b/build/Release ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 12 (d960a8a2be97da268ea6afc01ba70ea3e2a13772):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
461a8da4f18bd2232a26dbd05a6405a4f0801cf3:[settings] arch=armv8 build_type=Debug compiler=apple-clang compiler.libcxx=libc++ compiler.version=13.0 os=Macos [options] imgui:shared=True[...] "___CFConstantStringClassReference", referenced from: CFString in imgui_impl_osx.mm.o "___NSArray0__struct", referenced from: -[KeyEventResponder validAttributesForMarkedText] in imgui_impl_osx.mm.o "__objc_empty_cache", referenced from: _OBJC_CLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_KeyEventResponder in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o "_objc_enumerationMutation", referenced from: ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSendSuper2", referenced from: -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder keyUp:] in imgui_impl_osx.mm.o "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_new", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.2-docking: ERROR: Package '461a8da4f18bd2232a26dbd05a6405a4f0801cf3' build failed imgui/1.91.2-docking: WARN: Build folder /Users/jenkins/workspace/prod-v1/bsr/99697/bdaea/.conan/data/imgui/1.91.2-docking/_/_/build/461a8da4f18bd2232a26dbd05a6405a4f0801cf3/build/Debug ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing cmake --build "/Users/jenkins/workspace/prod-v1/bsr/99697/bdaea/.conan/data/imgui/1.91.2-docking/_/_/build/461a8da4f18bd2232a26dbd05a6405a4f0801cf3/build/Debug" '--' '-j8'
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 12 (d960a8a2be97da268ea6afc01ba70ea3e2a13772):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
649e5abc68de9d383d94683cdcffd1692ec0642a:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=True[...] _OBJC_METACLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGuiObserver in imgui_impl_osx.mm.o _OBJC_METACLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o _OBJC_CLASS_$_ImGui_ImplOSX_Window in imgui_impl_osx.mm.o "_objc_alloc", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o "_objc_enumerationMutation", referenced from: ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o "_objc_msgSend", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o -[KeyEventResponder viewDidMoveToWindow] in imgui_impl_osx.mm.o -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ... "_objc_msgSendSuper2", referenced from: -[KeyEventResponder keyDown:] in imgui_impl_osx.mm.o -[KeyEventResponder keyUp:] in imgui_impl_osx.mm.o "_objc_msgSend_stret", referenced from: -[KeyEventResponder updateImePosWithView:] in imgui_impl_osx.mm.o ImGui_ImplOSX_HandleEvent(NSEvent*, NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_UpdateMonitors() in imgui_impl_osx.mm.o ImGui_ImplOSX_NewFrame(NSView*) in imgui_impl_osx.mm.o ImGui_ImplOSX_CreateWindow(ImGuiViewport*) in imgui_impl_osx.mm.o ImGui_ImplOSX_SetWindowPos(ImGuiViewport*, ImVec2) in imgui_impl_osx.mm.o ImGui_ImplOSX_GetWindowPos(ImGuiViewport*) in imgui_impl_osx.mm.o ... "_objc_opt_class", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_isKindOfClass", referenced from: -[KeyEventResponder insertText:replacementRange:] in imgui_impl_osx.mm.o "_objc_opt_new", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o "_objc_opt_respondsToSelector", referenced from: ImGui_ImplOSX_Init(NSView*) in imgui_impl_osx.mm.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [libimgui-osx.dylib] Error 1 make[1]: *** [CMakeFiles/imgui-osx.dir/all] Error 2 make: *** [all] Error 2 imgui/1.91.2-docking: ERROR: Package '649e5abc68de9d383d94683cdcffd1692ec0642a' build failed imgui/1.91.2-docking: WARN: Build folder /Users/jenkins/workspace/prod-v2/bsr/88843/ebfef/p/b/imgui59b1f9838ebcd/b/build/Release ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 2 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 14 (c44ea0965cb2a72f8c2ed792ae5fe522d0291e5b):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
f1c8bd050601069472b97f251e8b8d8d97cac986:[settings] arch=x86_64 build_type=Debug compiler=Visual Studio compiler.runtime=MDd compiler.version=16 os=Windows [options] imgui:shared=True[...] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_vulkan.cpp(1597,1): warning C4273: 'ImGui_ImplVulkanH_DestroyWindow': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_vulkan.h(142,37): message : see previous definition of 'ImGui_ImplVulkanH_DestroyWindow' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-vulkan.vcxproj] Creating library C:/J/workspace/prod-v1/bsr/99787/dfbbe/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/Debug/imgui-vulkan.lib and object C:/J/workspace/prod-v1/bsr/99787/dfbbe/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/Debug/imgui-vulkan.exp imgui-vulkan.vcxproj -> C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\Debug\imgui-vulkan.dll Building Custom Rule C:/J/workspace/prod-v1/bsr/99787/dfbbe/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/src/CMakeLists.txt imgui_impl_win32.cpp C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(218,1): error C2491: 'ImGui_ImplWin32_Init': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(223,1): error C2491: 'ImGui_ImplWin32_InitForOpenGL': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(229,1): warning C4273: 'ImGui_ImplWin32_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(27,25): message : see previous definition of 'ImGui_ImplWin32_Shutdown' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(462,1): warning C4273: 'ImGui_ImplWin32_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(28,25): message : see previous definition of 'ImGui_ImplWin32_NewFrame' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(663,1): error C2491: 'ImGui_ImplWin32_WndProcHandler': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(906,1): warning C4273: 'ImGui_ImplWin32_EnableDpiAwareness': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(45,25): message : see previous definition of 'ImGui_ImplWin32_EnableDpiAwareness' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(939,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForMonitor': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(47,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForMonitor' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(965,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForHwnd': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(46,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForHwnd' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(982,1): warning C4273: 'ImGui_ImplWin32_EnableAlphaCompositing': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(52,25): message : see previous definition of 'ImGui_ImplWin32_EnableAlphaCompositing' [C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] imgui/1.91.2-docking: CMake Warning at C:/J/workspace/prod-v1/bsr/99787/dfbbe/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/generators/SDL2Targets.cmake:25 (message): Target name 'SDL2::SDL2-static' already exists. Call Stack (most recent call first): C:/J/workspace/prod-v1/bsr/99787/dfbbe/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/generators/SDL2Config.cmake:16 (include) CMakeLists.txt:146 (find_package) CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 IMGUI_BUILD_PROGRAMS IMGUI_FREETYPE_LUNASVG IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.2-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.2-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.2-docking: ERROR: Package 'f1c8bd050601069472b97f251e8b8d8d97cac986' build failed imgui/1.91.2-docking: WARN: Build folder C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 1 while executing cmake --build "C:\J\workspace\prod-v1\bsr\99787\dfbbe\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build" --config Debug
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 14 (c44ea0965cb2a72f8c2ed792ae5fe522d0291e5b):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
16169e834e9560b194765f9607ed556c13ce2699:[settings] arch=x86_64 build_type=Release compiler=msvc compiler.cppstd=14 compiler.runtime=dynamic compiler.runtime_type=Release compiler.version=192 os=Windows [options] */*:shared=True[...] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1080,1): warning C4273: 'ImGui_ImplVulkan_LoadFunctions': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(119,29): message : see previous definition of 'ImGui_ImplVulkan_LoadFunctions' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1108,1): warning C4273: 'ImGui_ImplVulkan_Init': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(103,29): message : see previous definition of 'ImGui_ImplVulkan_Init' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1161,1): warning C4273: 'ImGui_ImplVulkan_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(104,29): message : see previous definition of 'ImGui_ImplVulkan_Shutdown' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1185,1): warning C4273: 'ImGui_ImplVulkan_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(105,29): message : see previous definition of 'ImGui_ImplVulkan_NewFrame' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1194,1): warning C4273: 'ImGui_ImplVulkan_SetMinImageCount': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(109,29): message : see previous definition of 'ImGui_ImplVulkan_SetMinImageCount' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1212,1): warning C4273: 'ImGui_ImplVulkan_AddTexture': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(114,32): message : see previous definition of 'ImGui_ImplVulkan_AddTexture' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1246,1): warning C4273: 'ImGui_ImplVulkan_RemoveTexture': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(115,32): message : see previous definition of 'ImGui_ImplVulkan_RemoveTexture' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1289,1): warning C4273: 'ImGui_ImplVulkanH_SelectSurfaceFormat': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(143,37): message : see previous definition of 'ImGui_ImplVulkanH_SelectSurfaceFormat' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1334,1): warning C4273: 'ImGui_ImplVulkanH_SelectPresentMode': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(144,37): message : see previous definition of 'ImGui_ImplVulkanH_SelectPresentMode' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1407,1): warning C4273: 'ImGui_ImplVulkanH_GetMinImageCountFromPresentMode': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(145,37): message : see previous definition of 'ImGui_ImplVulkanH_GetMinImageCountFromPresentMode' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1588,1): warning C4273: 'ImGui_ImplVulkanH_CreateOrResizeWindow': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(141,37): message : see previous definition of 'ImGui_ImplVulkanH_CreateOrResizeWindow' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.cpp(1597,1): warning C4273: 'ImGui_ImplVulkanH_DestroyWindow': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_vulkan.h(142,37): message : see previous definition of 'ImGui_ImplVulkanH_DestroyWindow' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-vulkan.vcxproj] Creating library C:/J/workspace/prod-v2/bsr/88930/bbcea/p/b/imgui9e9f163c5c66e/b/build/Release/imgui-vulkan.lib and object C:/J/workspace/prod-v2/bsr/88930/bbcea/p/b/imgui9e9f163c5c66e/b/build/Release/imgui-vulkan.exp imgui-vulkan.vcxproj -> C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\Release\imgui-vulkan.dll Building Custom Rule C:/J/workspace/prod-v2/bsr/88930/bbcea/p/b/imgui9e9f163c5c66e/b/src/CMakeLists.txt imgui_impl_win32.cpp C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(218,1): error C2491: 'ImGui_ImplWin32_Init': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(223,1): error C2491: 'ImGui_ImplWin32_InitForOpenGL': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(229,1): warning C4273: 'ImGui_ImplWin32_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(27,25): message : see previous definition of 'ImGui_ImplWin32_Shutdown' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(462,1): warning C4273: 'ImGui_ImplWin32_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(28,25): message : see previous definition of 'ImGui_ImplWin32_NewFrame' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(663,1): error C2491: 'ImGui_ImplWin32_WndProcHandler': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(906,1): warning C4273: 'ImGui_ImplWin32_EnableDpiAwareness': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(45,25): message : see previous definition of 'ImGui_ImplWin32_EnableDpiAwareness' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(939,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForMonitor': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(47,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForMonitor' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(965,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForHwnd': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(46,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForHwnd' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.cpp(982,1): warning C4273: 'ImGui_ImplWin32_EnableAlphaCompositing': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\src\backends\imgui_impl_win32.h(52,25): message : see previous definition of 'ImGui_ImplWin32_EnableAlphaCompositing' [C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build\imgui-win32.vcxproj] imgui/1.91.2-docking: ERROR: Package '16169e834e9560b194765f9607ed556c13ce2699' build failed imgui/1.91.2-docking: WARN: Build folder C:\J\workspace\prod-v2\bsr\88930\bbcea\p\b\imgui9e9f163c5c66e\b\build ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 1 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 15 (5e9a5df4008d6d41ebbe63489add1276ee4bc742):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
f1c8bd050601069472b97f251e8b8d8d97cac986:[settings] arch=x86_64 build_type=Debug compiler=Visual Studio compiler.runtime=MDd compiler.version=16 os=Windows [options] imgui:shared=True[...] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_vulkan.cpp(1597,1): warning C4273: 'ImGui_ImplVulkanH_DestroyWindow': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_vulkan.h(142,37): message : see previous definition of 'ImGui_ImplVulkanH_DestroyWindow' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-vulkan.vcxproj] Creating library C:/J/workspace/prod-v1/bsr@2/99833/aabad/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/Debug/imgui-vulkan.lib and object C:/J/workspace/prod-v1/bsr@2/99833/aabad/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/Debug/imgui-vulkan.exp imgui-vulkan.vcxproj -> C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\Debug\imgui-vulkan.dll Building Custom Rule C:/J/workspace/prod-v1/bsr@2/99833/aabad/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/src/CMakeLists.txt imgui_impl_win32.cpp C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(218,1): error C2491: 'ImGui_ImplWin32_Init': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(223,1): error C2491: 'ImGui_ImplWin32_InitForOpenGL': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(229,1): warning C4273: 'ImGui_ImplWin32_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(27,25): message : see previous definition of 'ImGui_ImplWin32_Shutdown' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(462,1): warning C4273: 'ImGui_ImplWin32_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(28,25): message : see previous definition of 'ImGui_ImplWin32_NewFrame' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(663,1): error C2491: 'ImGui_ImplWin32_WndProcHandler': definition of dllimport function not allowed [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(906,1): warning C4273: 'ImGui_ImplWin32_EnableDpiAwareness': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(45,25): message : see previous definition of 'ImGui_ImplWin32_EnableDpiAwareness' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(939,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForMonitor': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(47,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForMonitor' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(965,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForHwnd': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(46,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForHwnd' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.cpp(982,1): warning C4273: 'ImGui_ImplWin32_EnableAlphaCompositing': inconsistent dll linkage [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\src\backends\imgui_impl_win32.h(52,25): message : see previous definition of 'ImGui_ImplWin32_EnableAlphaCompositing' [C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build\imgui-win32.vcxproj] imgui/1.91.2-docking: CMake Warning at C:/J/workspace/prod-v1/bsr@2/99833/aabad/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/generators/SDL2Targets.cmake:25 (message): Target name 'SDL2::SDL2-static' already exists. Call Stack (most recent call first): C:/J/workspace/prod-v1/bsr@2/99833/aabad/.conan/data/imgui/1.91.2-docking/_/_/build/f1c8bd050601069472b97f251e8b8d8d97cac986/build/generators/SDL2Config.cmake:16 (include) CMakeLists.txt:146 (find_package) CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 IMGUI_BUILD_PROGRAMS IMGUI_FREETYPE_LUNASVG IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.2-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.2-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.2-docking: ERROR: Package 'f1c8bd050601069472b97f251e8b8d8d97cac986' build failed imgui/1.91.2-docking: WARN: Build folder C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 1 while executing cmake --build "C:\J\workspace\prod-v1\bsr@2\99833\aabad\.conan\data\imgui\1.91.2-docking\_\_\build\f1c8bd050601069472b97f251e8b8d8d97cac986\build" --config Debug
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 15 (5e9a5df4008d6d41ebbe63489add1276ee4bc742):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
16169e834e9560b194765f9607ed556c13ce2699:[settings] arch=x86_64 build_type=Release compiler=msvc compiler.cppstd=14 compiler.runtime=dynamic compiler.runtime_type=Release compiler.version=192 os=Windows [options] */*:shared=True[...] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1080,1): warning C4273: 'ImGui_ImplVulkan_LoadFunctions': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(119,29): message : see previous definition of 'ImGui_ImplVulkan_LoadFunctions' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1108,1): warning C4273: 'ImGui_ImplVulkan_Init': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(103,29): message : see previous definition of 'ImGui_ImplVulkan_Init' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1161,1): warning C4273: 'ImGui_ImplVulkan_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(104,29): message : see previous definition of 'ImGui_ImplVulkan_Shutdown' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1185,1): warning C4273: 'ImGui_ImplVulkan_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(105,29): message : see previous definition of 'ImGui_ImplVulkan_NewFrame' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1194,1): warning C4273: 'ImGui_ImplVulkan_SetMinImageCount': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(109,29): message : see previous definition of 'ImGui_ImplVulkan_SetMinImageCount' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1212,1): warning C4273: 'ImGui_ImplVulkan_AddTexture': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(114,32): message : see previous definition of 'ImGui_ImplVulkan_AddTexture' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1246,1): warning C4273: 'ImGui_ImplVulkan_RemoveTexture': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(115,32): message : see previous definition of 'ImGui_ImplVulkan_RemoveTexture' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1289,1): warning C4273: 'ImGui_ImplVulkanH_SelectSurfaceFormat': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(143,37): message : see previous definition of 'ImGui_ImplVulkanH_SelectSurfaceFormat' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1334,1): warning C4273: 'ImGui_ImplVulkanH_SelectPresentMode': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(144,37): message : see previous definition of 'ImGui_ImplVulkanH_SelectPresentMode' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1407,1): warning C4273: 'ImGui_ImplVulkanH_GetMinImageCountFromPresentMode': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(145,37): message : see previous definition of 'ImGui_ImplVulkanH_GetMinImageCountFromPresentMode' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1588,1): warning C4273: 'ImGui_ImplVulkanH_CreateOrResizeWindow': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(141,37): message : see previous definition of 'ImGui_ImplVulkanH_CreateOrResizeWindow' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.cpp(1597,1): warning C4273: 'ImGui_ImplVulkanH_DestroyWindow': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_vulkan.h(142,37): message : see previous definition of 'ImGui_ImplVulkanH_DestroyWindow' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-vulkan.vcxproj] Creating library C:/J/workspace/prod-v2/bsr/88948/bcbfc/p/b/imguic5596c6edcb96/b/build/Release/imgui-vulkan.lib and object C:/J/workspace/prod-v2/bsr/88948/bcbfc/p/b/imguic5596c6edcb96/b/build/Release/imgui-vulkan.exp imgui-vulkan.vcxproj -> C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\Release\imgui-vulkan.dll Building Custom Rule C:/J/workspace/prod-v2/bsr/88948/bcbfc/p/b/imguic5596c6edcb96/b/src/CMakeLists.txt imgui_impl_win32.cpp C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(218,1): error C2491: 'ImGui_ImplWin32_Init': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(223,1): error C2491: 'ImGui_ImplWin32_InitForOpenGL': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(229,1): warning C4273: 'ImGui_ImplWin32_Shutdown': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(27,25): message : see previous definition of 'ImGui_ImplWin32_Shutdown' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(462,1): warning C4273: 'ImGui_ImplWin32_NewFrame': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(28,25): message : see previous definition of 'ImGui_ImplWin32_NewFrame' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(663,1): error C2491: 'ImGui_ImplWin32_WndProcHandler': definition of dllimport function not allowed [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(906,1): warning C4273: 'ImGui_ImplWin32_EnableDpiAwareness': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(45,25): message : see previous definition of 'ImGui_ImplWin32_EnableDpiAwareness' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(939,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForMonitor': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(47,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForMonitor' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(965,1): warning C4273: 'ImGui_ImplWin32_GetDpiScaleForHwnd': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(46,25): message : see previous definition of 'ImGui_ImplWin32_GetDpiScaleForHwnd' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.cpp(982,1): warning C4273: 'ImGui_ImplWin32_EnableAlphaCompositing': inconsistent dll linkage [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\src\backends\imgui_impl_win32.h(52,25): message : see previous definition of 'ImGui_ImplWin32_EnableAlphaCompositing' [C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build\imgui-win32.vcxproj] imgui/1.91.2-docking: ERROR: Package '16169e834e9560b194765f9607ed556c13ce2699' build failed imgui/1.91.2-docking: WARN: Build folder C:\J\workspace\prod-v2\bsr\88948\bcbfc\p\b\imguic5596c6edcb96\b\build ERROR: imgui/1.91.2-docking: Error in build() method, line 242 cmake.build() ConanException: Error 1 while executing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 18 (07738c460a571855838012feaf2073f433d07f44):
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: command 'git merge --no-ff 3bf569d95852fada4016f82e60d6a4f7b51a5601' failed with exit code 1: Auto-merging recipes/imgui/all/conandata.yml CONFLICT (content): Merge conflict in recipes/imgui/all/conandata.yml Auto-merging recipes/imgui/config.yml CONFLICT (content): Merge conflict in recipes/imgui/config.yml Automatic merge failed; fix conflicts and then commit the result.
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 18 (07738c460a571855838012feaf2073f433d07f44):
-
imgui/1.91.2: command 'git merge --no-ff 3bf569d95852fada4016f82e60d6a4f7b51a5601' failed with exit code 1: Auto-merging recipes/imgui/all/conandata.yml CONFLICT (content): Merge conflict in recipes/imgui/all/conandata.yml Auto-merging recipes/imgui/config.yml CONFLICT (content): Merge conflict in recipes/imgui/config.yml Automatic merge failed; fix conflicts and then commit the result.
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 19 (135f62b18ccce165fbde710b87af86ab105d5afc):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.85: CI failed to create some packages (All logs)
Logs for packageID
8ae50e95ae9ae5e9699c5561a018884eff0a77a7:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] imgui/1.85: Calling build() imgui/1.85: dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** WARN: libpng/1.6.44: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 imgui/1.85: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.85: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.85: ERROR: Package '8ae50e95ae9ae5e9699c5561a018884eff0a77a7' build failed imgui/1.85: WARN: Build folder /home/conan/workspace/prod-v1/bsr/100055/ebeac/.conan/data/imgui/1.85/_/_/build/8ae50e95ae9ae5e9699c5561a018884eff0a77a7/build/Release ERROR: imgui/1.85: Error in build() method, line 238 self._configure_header() while calling '_configure_header', line 224 raise ConanException(f"Failed to set {define} in imconfig.h") ConanException: Failed to set IMGUI_ENABLE_FREETYPE_LUNASVG in imconfig.h -
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 19 (135f62b18ccce165fbde710b87af86ab105d5afc):
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
756e191c865eec4878f533bddaee96228da2a8a4:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] zlib/1.3.1: Package installed b647c43bfefae3f830561ca202b6cfd935b56205 zlib/1.3.1: Downloaded package revision 6b307bbcbae23635c4006543ffdbf3ef glfw/3.4: Retrieving package 84ecd9745f2571953af72f2353c33a167dde83e1 from remote 'conan-center' glfw/3.4: Package installed 84ecd9745f2571953af72f2353c33a167dde83e1 glfw/3.4: Downloaded package revision 5b56a8c303d98ed3f1f46b3c3b5ea057 libpng/1.6.44: Retrieving package 19b397f6e54f5b8b2c6f7b81c4dce4c52d386e4f from remote 'conan-center' libpng/1.6.44: Package installed 19b397f6e54f5b8b2c6f7b81c4dce4c52d386e4f libpng/1.6.44: Downloaded package revision 7fac07f22c22832c2f5c4e7f9990ce0e lunasvg/2.4.1: Retrieving package 18895762ee8aa0b3506e7aab81fd737a444b7064 from remote 'conan-center' lunasvg/2.4.1: Package installed 18895762ee8aa0b3506e7aab81fd737a444b7064 lunasvg/2.4.1: Downloaded package revision a517f4a633b55477115dbfe628d3d272 vulkan-loader/1.3.290.0: Retrieving package 3161865ab91a0122ba5b0358d4cc73bfc611a600 from remote 'conan-center' vulkan-loader/1.3.290.0: Package installed 3161865ab91a0122ba5b0358d4cc73bfc611a600 vulkan-loader/1.3.290.0: Downloaded package revision 8efd2569fe88e5f65f929ab7333a5f96 freetype/2.13.2: Retrieving package 739e41967cd8e90e567861f59c4c6a1087fe7977 from remote 'conan-center' freetype/2.13.2: Package installed 739e41967cd8e90e567861f59c4c6a1087fe7977 freetype/2.13.2: Downloaded package revision 0aa1681909e055ab15235c6492fe640f imgui/1.87: Calling source() in /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/imguib1d43ff9f9f81/s/src imgui/1.87: Sources for https://github.com/ocornut/imgui/archive/v1.87.tar.gz found in remote backup https://c3i.jfrog.io/artifactory/conan-center-backup-sources/ imgui/1.87: Unzipping v1.87.tar.gz to . -------- Installing package imgui/1.87 (13 of 13) -------- imgui/1.87: Building from source imgui/1.87: Package imgui/1.87:756e191c865eec4878f533bddaee96228da2a8a4 imgui/1.87: Copying sources to build folder imgui/1.87: Building your package in /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/b/imgui6d9ae0b17a26e/b imgui/1.87: Calling generate() imgui/1.87: Generators folder: /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/b/imgui6d9ae0b17a26e/b/build/Release/generators imgui/1.87: CMakeToolchain generated: conan_toolchain.cmake imgui/1.87: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/b/imgui6d9ae0b17a26e/b/build/Release/generators/CMakePresets.json imgui/1.87: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/b/imgui6d9ae0b17a26e/b/src/CMakeUserPresets.json imgui/1.87: CMakeDeps necessary find_package() and targets for your CMakeLists.txt find_package(VulkanLoader) find_package(VulkanHeaders) find_package(glfw3) find_package(opengl_system) find_package(freetype) find_package(lunasvg) target_link_libraries(... Vulkan::Loader vulkan-headers::vulkan-headers glfw opengl::opengl Freetype::Freetype lunasvg::lunasvg) imgui/1.87: Generating aggregated env files imgui/1.87: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] imgui/1.87: Calling build() imgui/1.87: ERROR: Package '756e191c865eec4878f533bddaee96228da2a8a4' build failed imgui/1.87: WARN: Build folder /home/conan/workspace/prod-v2/bsr/89245/ffaee/p/b/imgui6d9ae0b17a26e/b/build/Release ERROR: imgui/1.87: Error in build() method, line 238 self._configure_header() while calling '_configure_header', line 224 raise ConanException(f"Failed to set {define} in imconfig.h") ConanException: Failed to set IMGUI_ENABLE_FREETYPE_LUNASVG in imconfig.h
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 21 (e31ca15e5ba89bf8d1d8585ea3b7746bcc9996d8):
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Error running command
conan info imgui/1.85@#9ff9334e3ff1d3f1c7cf01b1e7068387 --json {jsonName} --dry-build -pr {profileName}:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False ... ERROR: imgui/1.85: Error in requirements() method, line 169 if self.options.enable_freetype_lunasvg: ConanException: option 'enable_freetype_lunasvg' doesn't exist Possible options are ['shared', 'fPIC', 'build_backends', 'backend_glfw', 'backend_glut', 'backend_opengl2', 'backend_opengl3', 'backend_vulkan', 'enable_freetype', 'enable_demo_windows', 'enable_debug_tools', 'use_bgra_packed_color', 'use_wchar32', 'build_programs'] -
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 21 (e31ca15e5ba89bf8d1d8585ea3b7746bcc9996d8):
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.85: Error running command
conan graph info --requires imgui/1.85@#9ff9334e3ff1d3f1c7cf01b1e7068387 --build imgui/1.85@#9ff9334e3ff1d3f1c7cf01b1e7068387 -f json -pr:h /home/conan/workspace/prod-v2/bsr/89290/afbce/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/89290/afbce/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:======== Computing dependency graph ======== ERROR: imgui/1.85: Error in requirements() method, line 169 if self.options.enable_freetype_lunasvg: ConanException: option 'enable_freetype_lunasvg' doesn't exist Possible options are ['shared', 'fPIC', 'build_backends', 'backend_glfw', 'backend_glut', 'backend_opengl2', 'backend_opengl3', 'backend_vulkan', 'enable_freetype', 'enable_demo_windows', 'enable_debug_tools', 'use_bgra_packed_color', 'use_wchar32', 'build_programs'] -
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 22 (be4be74026736a00fa260aba934a98b632559eec):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: CI failed to create some packages (All logs)
Logs for packageID
bb8e27825c2a5a0a5c701930a667e812daf8f620:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=9 os=Linux [options] imgui:shared=False[...] dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed CMake Warning at /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/build/Release/generators/SDL2Targets.cmake:25 (message): Target name 'SDL2::SDL2-static' already exists. Call Stack (most recent call first): /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/build/Release/generators/SDL2Config.cmake:16 (include) CMakeLists.txt:163 (find_package) CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 IMGUI_BUILD_PROGRAMS IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU In file included from /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/src/misc/freetype/imgui_freetype.cpp:36: /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/src/imgui.h: In instantiation of ‘void IM_DELETE(T*) [with T = void]’: /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/src/misc/freetype/imgui_freetype.cpp:843:22: required from here /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/src/imgui.h:1801:56: error: ‘void*’ is not a pointer-to-object type 1801 | template<typename T> void IM_DELETE(T* p) { if (p) { p->~T(); ImGui::MemFree(p); } } | ^ make[2]: *** [CMakeFiles/imgui.dir/build.make:160: CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [CMakeFiles/Makefile2:215: CMakeFiles/imgui.dir/all] Error 2 make: *** [Makefile:149: all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** WARN: libpng/1.6.44: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 imgui/1.89.9: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.89.9: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.89.9: ERROR: Package 'bb8e27825c2a5a0a5c701930a667e812daf8f620' build failed imgui/1.89.9: WARN: Build folder /home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/build/Release ERROR: imgui/1.89.9: Error in build() method, line 244 cmake.build() ConanException: Error 2 while executing cmake --build "/home/conan/workspace/prod-v1/bsr/100136/dfebf/.conan/data/imgui/1.89.9/_/_/build/bb8e27825c2a5a0a5c701930a667e812daf8f620/build/Release" '--' '-j3' -
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 22 (be4be74026736a00fa260aba934a98b632559eec):
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: CI failed to create some packages (All logs)
Logs for packageID
bcecc49c305e1d5afa9f0fa98dabf44817159ae0:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] -- Conan: Target declared 'libunwind::libunwind' -- Conan: Target declared 'LibLZMA::LibLZMA' -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/89308/eecaa/p/xz_ute24eea7d0b168/p/lib/cmake/conan-official-xz_utils-variables.cmake' -- Conan: Target declared 'Vulkan::Vulkan' -- Conan: Component target declared 'Vulkan::Headers' -- Conan: Component target declared 'Vulkan::Registry' -- Conan: Target declared 'vulkan-headers::vulkan-headers' -- Found Vulkan: 1.3.290.0 (found version "1.3.290.0") -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: IMGUI_BUILD_PROGRAMS IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU -- Build files have been written to: /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/build/Release imgui/1.89.9-docking: Running CMake.build() imgui/1.89.9-docking: RUN: cmake --build "/home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/build/Release" -- -j3 Scanning dependencies of target imgui [ 5%] Building CXX object CMakeFiles/imgui.dir/imgui.cpp.o [ 10%] Building CXX object CMakeFiles/imgui.dir/imgui_demo.cpp.o [ 15%] Building CXX object CMakeFiles/imgui.dir/imgui_draw.cpp.o [ 20%] Building CXX object CMakeFiles/imgui.dir/imgui_tables.cpp.o [ 25%] Building CXX object CMakeFiles/imgui.dir/imgui_widgets.cpp.o [ 30%] Building CXX object CMakeFiles/imgui.dir/misc/cpp/imgui_stdlib.cpp.o [ 35%] Building CXX object CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o In file included from /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/src/misc/freetype/imgui_freetype.cpp:36: /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/src/imgui.h: In instantiation of 'void IM_DELETE(T*) [with T = void]': /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/src/misc/freetype/imgui_freetype.cpp:843:14: required from here /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/src/imgui.h:1877:56: error: 'void*' is not a pointer-to-object type 1877 | template<typename T> void IM_DELETE(T* p) { if (p) { p->~T(); ImGui::MemFree(p); } } | ^ CMakeFiles/imgui.dir/build.make:140: recipe for target 'CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o' failed make[2]: *** [CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs.... CMakeFiles/Makefile2:113: recipe for target 'CMakeFiles/imgui.dir/all' failed make[1]: *** [CMakeFiles/imgui.dir/all] Error 2 Makefile:129: recipe for target 'all' failed make: *** [all] Error 2 imgui/1.89.9-docking: ERROR: Package 'bcecc49c305e1d5afa9f0fa98dabf44817159ae0' build failed imgui/1.89.9-docking: WARN: Build folder /home/conan/workspace/prod-v2/bsr/89308/eecaa/p/b/imgui563091f4fbfdf/b/build/Release ERROR: imgui/1.89.9-docking: Error in build() method, line 244 cmake.build() ConanException: Error 2 while executing -
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
Failure in build 23 (169547586365ba5b6a29467c70406400417e67f4):
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
75aae519aa494084cebd8e3bbe93c47db4ead41d:[settings] arch=armv8 build_type=Debug compiler=apple-clang compiler.libcxx=libc++ compiler.version=13.0 os=Macos [options] imgui:shared=False[...] [ 25%] Building CXX object CMakeFiles/imgui.dir/imgui_draw.cpp.o [ 30%] Building CXX object CMakeFiles/imgui.dir/imgui_tables.cpp.o [ 35%] Building CXX object CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o [ 40%] Linking CXX static library libimgui.a [ 40%] Built target imgui [ 45%] Building CXX object CMakeFiles/imgui-vulkan.dir/backends/imgui_impl_vulkan.cpp.o [ 50%] Building CXX object CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o [ 55%] Building OBJCXX object CMakeFiles/imgui-metal.dir/backends/imgui_impl_metal.mm.o [ 60%] Building CXX object CMakeFiles/imgui-opengl3.dir/backends/imgui_impl_opengl3.cpp.o [ 65%] Building OBJCXX object CMakeFiles/imgui-osx.dir/backends/imgui_impl_osx.mm.o [ 70%] Building CXX object CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o [ 75%] Linking CXX static library libimgui-opengl2.a [ 80%] Linking CXX static library libimgui-glfw.a [ 85%] Linking CXX static library libimgui-opengl3.a [ 85%] Built target imgui-opengl2 [ 85%] Built target imgui-glfw [ 85%] Built target imgui-opengl3 [ 90%] Linking CXX static library libimgui-vulkan.a [ 90%] Built target imgui-vulkan [ 95%] Linking CXX static library libimgui-osx.a [ 95%] Built target imgui-osx imgui/1.87: CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 IMGUI_BUILD_PROGRAMS IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU In file included from /Users/jenkins/workspace/prod-v1/bsr@2/100217/dfeed/.conan/data/imgui/1.87/_/_/build/75aae519aa494084cebd8e3bbe93c47db4ead41d/src/backends/imgui_impl_metal.mm:28: /Users/jenkins/workspace/prod-v1/bsr@2/100217/dfeed/.conan/data/imgui/1.87/_/_/build/75aae519aa494084cebd8e3bbe93c47db4ead41d/src/backends/imgui_impl_metal.h:48:10: fatal error: 'Metal/Metal.hpp' file not found #include <Metal/Metal.hpp> ^~~~~~~~~~~~~~~~~ /Users/jenkins/workspace/prod-v1/bsr@2/100217/dfeed/.conan/data/imgui/1.87/_/_/build/75aae519aa494084cebd8e3bbe93c47db4ead41d/src/backends/imgui_impl_metal.h:48:10: note: did not find header 'Metal.hpp' in framework 'Metal' (loaded from '/Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk/System/Library/Frameworks') 1 error generated. make[2]: *** [CMakeFiles/imgui-metal.dir/backends/imgui_impl_metal.mm.o] Error 1 make[1]: *** [CMakeFiles/imgui-metal.dir/all] Error 2 make: *** [all] Error 2 WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** WARN: libpng/1.6.44: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 imgui/1.87: ERROR: Package '75aae519aa494084cebd8e3bbe93c47db4ead41d' build failed imgui/1.87: WARN: Build folder /Users/jenkins/workspace/prod-v1/bsr@2/100217/dfeed/.conan/data/imgui/1.87/_/_/build/75aae519aa494084cebd8e3bbe93c47db4ead41d/build/Debug ERROR: imgui/1.87: Error in build() method, line 244 cmake.build() ConanException: Error 2 while executing cmake --build "/Users/jenkins/workspace/prod-v1/bsr@2/100217/dfeed/.conan/data/imgui/1.87/_/_/build/75aae519aa494084cebd8e3bbe93c47db4ead41d/build/Debug" '--' '-j8' -
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 23 (169547586365ba5b6a29467c70406400417e67f4):
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
a6a342545e51135cfd813b941c204ec3868a688d:[settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=17 compiler.libcxx=libc++ compiler.version=13 os=Macos [options] */*:shared=False[...] IMGUI_IMPL_SDLRENDERER3 IMGUI_IMPL_WGPU -- Build files have been written to: /Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/build/Release imgui/1.87: Running CMake.build() imgui/1.87: RUN: cmake --build "/Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/build/Release" -- -j8 [ 15%] Building CXX object CMakeFiles/imgui.dir/misc/cpp/imgui_stdlib.cpp.o [ 15%] Building CXX object CMakeFiles/imgui.dir/imgui_demo.cpp.o [ 15%] Building CXX object CMakeFiles/imgui.dir/imgui_tables.cpp.o [ 20%] Building CXX object CMakeFiles/imgui.dir/imgui.cpp.o [ 25%] Building CXX object CMakeFiles/imgui.dir/imgui_draw.cpp.o [ 30%] Building CXX object CMakeFiles/imgui.dir/misc/freetype/imgui_freetype.cpp.o [ 35%] Building CXX object CMakeFiles/imgui.dir/imgui_widgets.cpp.o [ 40%] Linking CXX static library libimgui.a [ 40%] Built target imgui [ 50%] Building CXX object CMakeFiles/imgui-glfw.dir/backends/imgui_impl_glfw.cpp.o [ 50%] Building OBJCXX object CMakeFiles/imgui-osx.dir/backends/imgui_impl_osx.mm.o [ 55%] Building OBJCXX object CMakeFiles/imgui-metal.dir/backends/imgui_impl_metal.mm.o [ 60%] Building CXX object CMakeFiles/imgui-vulkan.dir/backends/imgui_impl_vulkan.cpp.o [ 65%] Building CXX object CMakeFiles/imgui-opengl2.dir/backends/imgui_impl_opengl2.cpp.o [ 70%] Building CXX object CMakeFiles/imgui-opengl3.dir/backends/imgui_impl_opengl3.cpp.o In file included from /Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/src/backends/imgui_impl_metal.mm:28: /Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/src/backends/imgui_impl_metal.h:48:10: fatal error: 'Metal/Metal.hpp' file not found #include <Metal/Metal.hpp> ^~~~~~~~~~~~~~~~~ /Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/src/backends/imgui_impl_metal.h:48:10: note: did not find header 'Metal.hpp' in framework 'Metal' (loaded from '/Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk/System/Library/Frameworks') [ 75%] Linking CXX static library libimgui-opengl2.a [ 80%] Linking CXX static library libimgui-glfw.a [ 80%] Built target imgui-opengl2 [ 85%] Linking CXX static library libimgui-opengl3.a [ 85%] Built target imgui-glfw [ 85%] Built target imgui-opengl3 [ 90%] Linking CXX static library libimgui-vulkan.a [ 90%] Built target imgui-vulkan 1 error generated. make[2]: *** [CMakeFiles/imgui-metal.dir/backends/imgui_impl_metal.mm.o] Error 1 make[1]: *** [CMakeFiles/imgui-metal.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [ 95%] Linking CXX static library libimgui-osx.a [ 95%] Built target imgui-osx make: *** [all] Error 2 imgui/1.87: ERROR: Package 'a6a342545e51135cfd813b941c204ec3868a688d' build failed imgui/1.87: WARN: Build folder /Users/jenkins/workspace/prod-v2/bsr/89353/bfffc/p/b/imguice596685bef9d/b/build/Release ERROR: imgui/1.87: Error in build() method, line 244 cmake.build() ConanException: Error 2 while executing -
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :heavy_check_mark:
All green in build 24 (9f6b90e80266ccba12b8c6343ac7f2ec7eb7e270):
-
imgui/1.91.2: Built 18 packages out of 22 (All logs)
-
imgui/1.90.9: Built 18 packages out of 22 (All logs)
-
imgui/1.91.0: Built 18 packages out of 22 (All logs)
-
imgui/1.90.5: Built 18 packages out of 22 (All logs)
-
imgui/1.90.8-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.7-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.89.9-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.91.2-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.7: Built 18 packages out of 22 (All logs)
-
imgui/1.90.6-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.88: Built 18 packages out of 22 (All logs)
-
imgui/1.87: Built 18 packages out of 22 (All logs)
-
imgui/1.90.9-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.5-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.91.0-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.8: Built 18 packages out of 22 (All logs)
-
imgui/1.89.9: Built 18 packages out of 22 (All logs)
-
imgui/1.86: All packages built successfully! (All logs)
-
imgui/1.85: All packages built successfully! (All logs)
-
imgui/1.90.6: Built 18 packages out of 22 (All logs)
Conan v2 pipeline :heavy_check_mark:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
All green in build 24 (9f6b90e80266ccba12b8c6343ac7f2ec7eb7e270):
-
imgui/1.91.2-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.91.0-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.91.2: Built 6 packages out of 10 (All logs)
-
imgui/1.90.8-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.9: Built 6 packages out of 10 (All logs)
-
imgui/1.90.9-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.91.0: Built 6 packages out of 10 (All logs)
-
imgui/1.86: All packages built successfully! (All logs)
-
imgui/1.90.8: Built 6 packages out of 10 (All logs)
-
imgui/1.90.5-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.89.9: Built 6 packages out of 10 (All logs)
-
imgui/1.88: Built 6 packages out of 10 (All logs)
-
imgui/1.90.7-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.6: Built 6 packages out of 10 (All logs)
-
imgui/1.90.5: Built 6 packages out of 10 (All logs)
-
imgui/1.89.9-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.7: Built 6 packages out of 10 (All logs)
-
imgui/1.90.6-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.87: Built 6 packages out of 10 (All logs)
-
imgui/1.85: All packages built successfully! (All logs)
Hooks produced the following warnings for commit 9f6b90e80266ccba12b8c6343ac7f2ec7eb7e270
imgui/1.86@#f71b2c36f40b6b38a05c882e11fe20bf
post_package(): WARN: [APPLE RELOCATABLE SHARED LIBS (KB-H077)] install_name dir of these shared libs is not @rpath: libimgui-osx.dylib, libimgui-metal.dylib
imgui/1.85@#5b7ab2f3ec1b8f0fe42e0d230d1d99a7
post_package(): WARN: [APPLE RELOCATABLE SHARED LIBS (KB-H077)] install_name dir of these shared libs is not @rpath: libimgui-osx.dylib, libimgui-metal.dylib
Conan v1 pipeline :x:
Failure in build 25 (867b73a6e8c49a3de18d78992f1aeced350ee650):
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
c46565062b2eecd3a36d57cc9ec713b2bc4d0c3d:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] [HOOK - conan-center.py] pre_build(): [FPIC MANAGEMENT (KB-H007)] OK imgui/1.87: Calling build() imgui/1.87: dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.87: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.87: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.87: ERROR: Package 'c46565062b2eecd3a36d57cc9ec713b2bc4d0c3d' build failed imgui/1.87: WARN: Build folder /home/conan/workspace/prod-v1/bsr/100401/ebeff/.conan/data/imgui/1.87/_/_/build/c46565062b2eecd3a36d57cc9ec713b2bc4d0c3d/build/Release ERROR: imgui/1.87: Error in build() method, line 248 self._configure_header() while calling '_configure_header', line 234 raise ConanException(f"Failed to set {define} in imconfig.h") ConanException: Failed to set IMGUI_DISABLE_DEBUG_TOOLS in imconfig.h -
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 25 (867b73a6e8c49a3de18d78992f1aeced350ee650):
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: CI failed to create some packages (All logs)
Logs for packageID
c1872e24933e567e53a218e3904267cd9dca8c6e:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-util-dev amd64 0.4.0-0ubuntu3 [9,974 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 9,974 B in 0s (164 kB/s) Selecting previously unselected package libxcb-util-dev:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19863 files and directories currently installed.) Preparing to unpack .../libxcb-util-dev_0.4.0-0ubuntu3_amd64.deb ... Unpacking libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... Setting up libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... ======== Installing packages ======== -------- Downloading 3 packages -------- opengl/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' opengl/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 opengl/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e xorg/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' xorg/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e glfw/3.4: Retrieving package 84ecd9745f2571953af72f2353c33a167dde83e1 from remote 'conan-center' glfw/3.4: Package installed 84ecd9745f2571953af72f2353c33a167dde83e1 glfw/3.4: Downloaded package revision 5b56a8c303d98ed3f1f46b3c3b5ea057 imgui/1.87: Calling source() in /home/conan/workspace/prod-v2/bsr/89544/efded/p/imguibdcd62a5d5304/s/src imgui/1.87: Sources for https://github.com/ocornut/imgui/archive/v1.87.tar.gz found in remote backup https://c3i.jfrog.io/artifactory/conan-center-backup-sources/ imgui/1.87: Unzipping v1.87.tar.gz to . -------- Installing package imgui/1.87 (4 of 4) -------- imgui/1.87: Building from source imgui/1.87: Package imgui/1.87:c1872e24933e567e53a218e3904267cd9dca8c6e imgui/1.87: Copying sources to build folder imgui/1.87: Building your package in /home/conan/workspace/prod-v2/bsr/89544/efded/p/b/imguiecf51daa6e8ef/b imgui/1.87: Calling generate() imgui/1.87: Generators folder: /home/conan/workspace/prod-v2/bsr/89544/efded/p/b/imguiecf51daa6e8ef/b/build/Release/generators imgui/1.87: CMakeToolchain generated: conan_toolchain.cmake imgui/1.87: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/89544/efded/p/b/imguiecf51daa6e8ef/b/build/Release/generators/CMakePresets.json imgui/1.87: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/89544/efded/p/b/imguiecf51daa6e8ef/b/src/CMakeUserPresets.json imgui/1.87: CMakeDeps necessary find_package() and targets for your CMakeLists.txt find_package(glfw3) find_package(opengl_system) target_link_libraries(... glfw opengl::opengl) imgui/1.87: Generating aggregated env files imgui/1.87: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] imgui/1.87: Calling build() imgui/1.87: ERROR: Package 'c1872e24933e567e53a218e3904267cd9dca8c6e' build failed imgui/1.87: WARN: Build folder /home/conan/workspace/prod-v2/bsr/89544/efded/p/b/imguiecf51daa6e8ef/b/build/Release ERROR: imgui/1.87: Error in build() method, line 248 self._configure_header() while calling '_configure_header', line 234 raise ConanException(f"Failed to set {define} in imconfig.h") ConanException: Failed to set IMGUI_DISABLE_DEBUG_TOOLS in imconfig.h -
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :heavy_check_mark:
All green in build 26 (2b349e6adb18b2e97f86dfd761c468feb8c48a82):
-
imgui/1.91.2: Built 18 packages out of 22 (All logs)
-
imgui/1.90.9: Built 18 packages out of 22 (All logs)
-
imgui/1.91.0: Built 18 packages out of 22 (All logs)
-
imgui/1.90.9-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.5-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.91.2-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.5: Built 18 packages out of 22 (All logs)
-
imgui/1.89.9-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.88: Built 18 packages out of 22 (All logs)
-
imgui/1.90.6: Built 18 packages out of 22 (All logs)
-
imgui/1.90.6-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.87: Built 18 packages out of 22 (All logs)
-
imgui/1.89.9: Built 18 packages out of 22 (All logs)
-
imgui/1.86: All packages built successfully! (All logs)
-
imgui/1.90.7-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.90.8-docking: Built 18 packages out of 22 (All logs)
-
imgui/1.85: All packages built successfully! (All logs)
-
imgui/1.90.7: Built 18 packages out of 22 (All logs)
-
imgui/1.90.8: Built 18 packages out of 22 (All logs)
-
imgui/1.91.0-docking: Built 18 packages out of 22 (All logs)
Conan v2 pipeline :heavy_check_mark:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
All green in build 26 (2b349e6adb18b2e97f86dfd761c468feb8c48a82):
-
imgui/1.91.2: Built 6 packages out of 10 (All logs)
-
imgui/1.91.2-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.5: Built 6 packages out of 10 (All logs)
-
imgui/1.90.5-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.91.0: Built 6 packages out of 10 (All logs)
-
imgui/1.91.0-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.9-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.6: Built 6 packages out of 10 (All logs)
-
imgui/1.90.8-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.9: Built 6 packages out of 10 (All logs)
-
imgui/1.90.8: Built 6 packages out of 10 (All logs)
-
imgui/1.90.7-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.90.6-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.88: Built 6 packages out of 10 (All logs)
-
imgui/1.90.7: Built 6 packages out of 10 (All logs)
-
imgui/1.89.9: Built 6 packages out of 10 (All logs)
-
imgui/1.86: All packages built successfully! (All logs)
-
imgui/1.89.9-docking: Built 6 packages out of 10 (All logs)
-
imgui/1.87: Built 6 packages out of 10 (All logs)
-
imgui/1.85: All packages built successfully! (All logs)
Hooks produced the following warnings for commit 2b349e6adb18b2e97f86dfd761c468feb8c48a82
imgui/1.86@#6c07b2eebf35b7365ace7efe78b7e7de
post_package(): WARN: [APPLE RELOCATABLE SHARED LIBS (KB-H077)] install_name dir of these shared libs is not @rpath: libimgui-osx.dylib, libimgui-metal.dylib
imgui/1.85@#d6f43ac34007b753a47994a8d1303440
post_package(): WARN: [APPLE RELOCATABLE SHARED LIBS (KB-H077)] install_name dir of these shared libs is not @rpath: libimgui-osx.dylib, libimgui-metal.dylib
The recipe is ready for review.
Conan v1 pipeline :x:
[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.
Failure in build 28 (feaa8a52befc581987a2461320819f29e3de3124):
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: CI failed to create some packages (All logs)
Logs for packageID
a05a50c44d6cbb5c20957c7934cd64a11237b9c3:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] imgui/1.90.7-docking: Calling build() imgui/1.90.7-docking: dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.90.7-docking: WARN: The -docking versions of imgui are deprecated. Use -o imgui/*:docking=True instead. imgui/1.90.7-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.7-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.90.7-docking: ERROR: Package 'a05a50c44d6cbb5c20957c7934cd64a11237b9c3' build failed imgui/1.90.7-docking: WARN: Build folder /home/conan/workspace/prod-v1/bsr/111969/acedd/.conan/data/imgui/1.90.7-docking/_/_/build/a05a50c44d6cbb5c20957c7934cd64a11237b9c3/build/Release ERROR: imgui/1.90.7-docking: Error in build() method, line 266 self._source() while calling '_source', line 229 get(self, **self.conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 28 (feaa8a52befc581987a2461320819f29e3de3124):
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
f29a724de47229c935e59bf02b6ded71474d8f2f:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] Need to get 9,974 B of archives. After this operation, 71.7 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-util-dev amd64 0.4.0-0ubuntu3 [9,974 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 9,974 B in 0s (52.0 kB/s) Selecting previously unselected package libxcb-util-dev:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19863 files and directories currently installed.) Preparing to unpack .../libxcb-util-dev_0.4.0-0ubuntu3_amd64.deb ... Unpacking libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... Setting up libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... ======== Installing packages ======== -------- Downloading 3 packages -------- opengl/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' opengl/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 opengl/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e xorg/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' xorg/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e glfw/3.4: Retrieving package 84ecd9745f2571953af72f2353c33a167dde83e1 from remote 'conan-center' glfw/3.4: Package installed 84ecd9745f2571953af72f2353c33a167dde83e1 glfw/3.4: Downloaded package revision 011537328d50499b6d5b907acbad679f imgui/1.91.2-docking: Calling source() in /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/imgui6984386d1aa82/s/src -------- Installing package imgui/1.91.2-docking (4 of 4) -------- imgui/1.91.2-docking: Building from source imgui/1.91.2-docking: Package imgui/1.91.2-docking:f29a724de47229c935e59bf02b6ded71474d8f2f imgui/1.91.2-docking: Copying sources to build folder imgui/1.91.2-docking: Building your package in /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/b/imgui6c43278d39803/b imgui/1.91.2-docking: Calling generate() imgui/1.91.2-docking: Generators folder: /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/b/imgui6c43278d39803/b/build/Release/generators imgui/1.91.2-docking: CMakeToolchain generated: conan_toolchain.cmake imgui/1.91.2-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/b/imgui6c43278d39803/b/build/Release/generators/CMakePresets.json imgui/1.91.2-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/b/imgui6c43278d39803/b/src/CMakeUserPresets.json imgui/1.91.2-docking: CMakeDeps necessary find_package() and targets for your CMakeLists.txt find_package(glfw3) find_package(opengl_system) target_link_libraries(... glfw opengl::opengl) imgui/1.91.2-docking: Generating aggregated env files imgui/1.91.2-docking: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] imgui/1.91.2-docking: Calling build() imgui/1.91.2-docking: ERROR: Package 'f29a724de47229c935e59bf02b6ded71474d8f2f' build failed imgui/1.91.2-docking: WARN: Build folder /home/conan/workspace/prod-v2/bsr/99903/ecbdb/p/b/imgui6c43278d39803/b/build/Release ERROR: imgui/1.91.2-docking: Error in build() method, line 266 self._source() while calling '_source', line 229 get(self, **self.conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.
Failure in build 44 (28ac6ce06d75a673ea464fda1d1db35f31c9146c):
-
imgui/1.91.4-docking: CI failed to create some packages (All logs)
Logs for packageID
a05a50c44d6cbb5c20957c7934cd64a11237b9c3:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] {} imgui/1.91.4-docking: dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.4-docking: WARN: The -docking versions of imgui are deprecated. Use -o imgui/*:docking=True instead. imgui/1.91.4-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.4-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.4-docking: ERROR: Package 'a05a50c44d6cbb5c20957c7934cd64a11237b9c3' build failed imgui/1.91.4-docking: WARN: Build folder /home/conan/workspace/prod-v1/bsr/113162/ffffd/.conan/data/imgui/1.91.4-docking/_/_/build/a05a50c44d6cbb5c20957c7934cd64a11237b9c3/build/Release ERROR: imgui/1.91.4-docking: Error in build() method, line 267 self._source() while calling '_source', line 230 get(self, **self.conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 44 (28ac6ce06d75a673ea464fda1d1db35f31c9146c):
-
imgui/1.91.0: Error running command
conan config install https://github.com/conan-io/hooks.git -sf hooks -tf extensions/hooks -
imgui/1.91.2: Error running command
conan config install https://github.com/conan-io/conan-extensions.git -sf extensions/commands -tf extensions/commands
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.
Failure in build 45 (b6498c154c049ef80a381cb566f8c5a721fb69a9):
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9: CI failed to create some packages (All logs)
Logs for packageID
85ccd1fe91a1eb6a2ab29fe302ae5ac866a6b5de:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=9 os=Linux [options] imgui:shared=False[...] Need to get 9974 B of archives. After this operation, 71.7 kB of additional disk space will be used. Get:1 http://old-releases.ubuntu.com/ubuntu eoan/main amd64 libxcb-util-dev amd64 0.4.0-0ubuntu3 [9974 B] Fetched 9974 B in 0s (152 kB/s) Selecting previously unselected package libxcb-util-dev:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 21206 files and directories currently installed.) Preparing to unpack .../libxcb-util-dev_0.4.0-0ubuntu3_amd64.deb ... Unpacking libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... Setting up libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxtst-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** [HOOK - conan-center.py] pre_source(): ERROR: [IMMUTABLE SOURCES (KB-H010)] Use 'tools.get(**self.conan_data["sources"]["XXXXX"])' in the source() method to get the sources. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H010-IMMUTABLE-SOURCES) ERROR: [HOOK - conan-center.py] pre_source(): Some checks failed running the hook, check the output -
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 45 (b6498c154c049ef80a381cb566f8c5a721fb69a9):
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: CI failed to create some packages (All logs)
Logs for packageID
f29a724de47229c935e59bf02b6ded71474d8f2f:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] Need to get 9,974 B of archives. After this operation, 71.7 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-util-dev amd64 0.4.0-0ubuntu3 [9,974 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 9,974 B in 2s (3,543 B/s) Selecting previously unselected package libxcb-util-dev:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19863 files and directories currently installed.) Preparing to unpack .../libxcb-util-dev_0.4.0-0ubuntu3_amd64.deb ... Unpacking libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... Setting up libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... ======== Installing packages ======== -------- Downloading 3 packages -------- opengl/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' opengl/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 opengl/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e xorg/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' xorg/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e glfw/3.4: Retrieving package 84ecd9745f2571953af72f2353c33a167dde83e1 from remote 'conan-center' glfw/3.4: Package installed 84ecd9745f2571953af72f2353c33a167dde83e1 glfw/3.4: Downloaded package revision 011537328d50499b6d5b907acbad679f imgui/1.91.2-docking: Calling source() in /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/imgui90f52bb1dfac6/s/src -------- Installing package imgui/1.91.2-docking (4 of 4) -------- imgui/1.91.2-docking: Building from source imgui/1.91.2-docking: Package imgui/1.91.2-docking:f29a724de47229c935e59bf02b6ded71474d8f2f imgui/1.91.2-docking: Copying sources to build folder imgui/1.91.2-docking: Building your package in /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/b/imguiff4783361daba/b imgui/1.91.2-docking: Calling generate() imgui/1.91.2-docking: Generators folder: /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/b/imguiff4783361daba/b/build/Release/generators imgui/1.91.2-docking: CMakeToolchain generated: conan_toolchain.cmake imgui/1.91.2-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/b/imguiff4783361daba/b/build/Release/generators/CMakePresets.json imgui/1.91.2-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/b/imguiff4783361daba/b/src/CMakeUserPresets.json imgui/1.91.2-docking: CMakeDeps necessary find_package() and targets for your CMakeLists.txt find_package(glfw3) find_package(opengl_system) target_link_libraries(... glfw opengl::opengl) imgui/1.91.2-docking: Generating aggregated env files imgui/1.91.2-docking: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] imgui/1.91.2-docking: Calling build() imgui/1.91.2-docking: ERROR: Package 'f29a724de47229c935e59bf02b6ded71474d8f2f' build failed imgui/1.91.2-docking: WARN: Build folder /home/conan/workspace/prod-v2/bsr/101112/bddcf/p/b/imguiff4783361daba/b/build/Release ERROR: imgui/1.91.2-docking: Error in build() method, line 269 self._source() while calling '_source', line 232 get(self, **conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v1 pipeline :x:
[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.
Failure in build 48 (1dfb05151007e2fbc28c31a738cf03f8415fc636):
-
imgui/1.91.4-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: CI failed to create some packages (All logs)
Logs for packageID
a05a50c44d6cbb5c20957c7934cd64a11237b9c3:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.libcxx=libstdc++11 compiler.version=5 os=Linux [options] imgui:shared=False[...] imgui/1.91.0-docking: Calling build() imgui/1.91.0-docking: dpkg-query: no packages found matching libgl-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libfontenc-dev dpkg-query: no packages found matching libice-dev dpkg-query: no packages found matching libsm-dev dpkg-query: no packages found matching libxaw7-dev dpkg-query: no packages found matching libxcomposite-dev dpkg-query: no packages found matching libxcursor-dev dpkg-query: no packages found matching libxi-dev dpkg-query: no packages found matching libxinerama-dev dpkg-query: no packages found matching libxkbfile-dev dpkg-query: no packages found matching libxmu-dev dpkg-query: no packages found matching libxmuu-dev dpkg-query: no packages found matching libxpm-dev dpkg-query: no packages found matching libxrandr-dev dpkg-query: no packages found matching libxrender-dev dpkg-query: no packages found matching libxres-dev dpkg-query: no packages found matching libxss-dev dpkg-query: no packages found matching libxt-dev dpkg-query: no packages found matching libxv-dev dpkg-query: no packages found matching libxcb-render-util0-dev dpkg-query: no packages found matching libxcb-xkb-dev dpkg-query: no packages found matching libxcb-icccm4-dev dpkg-query: no packages found matching libxcb-image0-dev dpkg-query: no packages found matching libxcb-keysyms1-dev dpkg-query: no packages found matching libxcb-xinerama0-dev dpkg-query: no packages found matching uuid-dev dpkg-query: no packages found matching libxcb-cursor-dev dpkg-query: no packages found matching libxcb-composite0-dev dpkg-query: no packages found matching libxcb-ewmh-dev dpkg-query: no packages found matching libxcb-res0-dev debconf: delaying package configuration, since apt-utils is not installed dpkg-query: no packages found matching libxcb-util-dev debconf: delaying package configuration, since apt-utils is not installed WARN: ************************************************** WARN: *** Conan 1 is legacy and on a deprecation path ** WARN: *********** Please upgrade to Conan 2 ************ WARN: ************************************************** imgui/1.91.0-docking: WARN: The -docking versions of imgui are deprecated. Use -o imgui/*:docking=True instead. imgui/1.91.0-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0-docking: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior imgui/1.91.0-docking: ERROR: Package 'a05a50c44d6cbb5c20957c7934cd64a11237b9c3' build failed imgui/1.91.0-docking: WARN: Build folder /home/conan/workspace/prod-v1/bsr/113459/abdee/.conan/data/imgui/1.91.0-docking/_/_/build/a05a50c44d6cbb5c20957c7934cd64a11237b9c3/build/Release ERROR: imgui/1.91.0-docking: Error in build() method, line 268 self._source() while calling '_source', line 231 get(self, **conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Conan v2 pipeline :x:
Note: Conan v2 builds are now mandatory. Please read our discussion about it.
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.
Failure in build 48 (1dfb05151007e2fbc28c31a738cf03f8415fc636):
-
imgui/1.91.2: Didn't run or was cancelled before finishing
-
imgui/1.91.4-docking: CI failed to create some packages (All logs)
Logs for packageID
f29a724de47229c935e59bf02b6ded71474d8f2f:[settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=17 compiler.libcxx=libstdc++11 compiler.version=11 os=Linux [options] */*:shared=False[...] 0 upgraded, 1 newly installed, 0 to remove and 7 not upgraded. Need to get 9,974 B of archives. After this operation, 71.7 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-util-dev amd64 0.4.0-0ubuntu3 [9,974 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 9,974 B in 0s (14.4 kB/s) Selecting previously unselected package libxcb-util-dev:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19863 files and directories currently installed.) Preparing to unpack .../libxcb-util-dev_0.4.0-0ubuntu3_amd64.deb ... Unpacking libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... Setting up libxcb-util-dev:amd64 (0.4.0-0ubuntu3) ... ======== Installing packages ======== -------- Downloading 3 packages -------- opengl/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' opengl/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 opengl/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e xorg/system: Retrieving package da39a3ee5e6b4b0d3255bfef95601890afd80709 from remote 'conan-center' xorg/system: Package installed da39a3ee5e6b4b0d3255bfef95601890afd80709 xorg/system: Downloaded package revision 0ba8627bd47edc3a501e8f0eb9a79e5e glfw/3.4: Retrieving package 84ecd9745f2571953af72f2353c33a167dde83e1 from remote 'conan-center' glfw/3.4: Package installed 84ecd9745f2571953af72f2353c33a167dde83e1 glfw/3.4: Downloaded package revision 011537328d50499b6d5b907acbad679f -------- Installing package imgui/1.91.4-docking (4 of 4) -------- imgui/1.91.4-docking: Building from source imgui/1.91.4-docking: Package imgui/1.91.4-docking:f29a724de47229c935e59bf02b6ded71474d8f2f imgui/1.91.4-docking: Copying sources to build folder imgui/1.91.4-docking: Building your package in /home/conan/workspace/prod-v2/bsr/101282/feeab/p/b/imguif2783dd76bb89/b imgui/1.91.4-docking: Calling generate() imgui/1.91.4-docking: Generators folder: /home/conan/workspace/prod-v2/bsr/101282/feeab/p/b/imguif2783dd76bb89/b/build/Release/generators imgui/1.91.4-docking: CMakeToolchain generated: conan_toolchain.cmake imgui/1.91.4-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/101282/feeab/p/b/imguif2783dd76bb89/b/build/Release/generators/CMakePresets.json imgui/1.91.4-docking: CMakeToolchain generated: /home/conan/workspace/prod-v2/bsr/101282/feeab/p/b/imguif2783dd76bb89/b/src/CMakeUserPresets.json imgui/1.91.4-docking: CMakeDeps necessary find_package() and targets for your CMakeLists.txt find_package(glfw3) find_package(opengl_system) target_link_libraries(... glfw opengl::opengl) imgui/1.91.4-docking: Generating aggregated env files imgui/1.91.4-docking: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] imgui/1.91.4-docking: Calling build() imgui/1.91.4-docking: ERROR: Package 'f29a724de47229c935e59bf02b6ded71474d8f2f' build failed imgui/1.91.4-docking: WARN: Build folder /home/conan/workspace/prod-v2/bsr/101282/feeab/p/b/imguif2783dd76bb89/b/build/Release ERROR: imgui/1.91.4-docking: Error in build() method, line 268 self._source() while calling '_source', line 231 get(self, **conan_data["sources"][version][kind], destination=self.source_folder, strip_root=True) KeyError: 'sources' -
imgui/1.91.2-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.4: Didn't run or was cancelled before finishing
-
imgui/1.91.0: Didn't run or was cancelled before finishing
-
imgui/1.91.3-docking: Didn't run or was cancelled before finishing
-
imgui/1.91.0-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.5-docking: Didn't run or was cancelled before finishing
-
imgui/1.85: Didn't run or was cancelled before finishing
-
imgui/1.87: Didn't run or was cancelled before finishing
-
imgui/1.90.7: Didn't run or was cancelled before finishing
-
imgui/1.90.9: Didn't run or was cancelled before finishing
-
imgui/1.91.3: Didn't run or was cancelled before finishing
-
imgui/1.90.6: Didn't run or was cancelled before finishing
-
imgui/1.89.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.89.9: Didn't run or was cancelled before finishing
-
imgui/1.90.6-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.9-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8-docking: Didn't run or was cancelled before finishing
-
imgui/1.90.8: Didn't run or was cancelled before finishing
-
imgui/1.90.5: Didn't run or was cancelled before finishing
-
imgui/1.90.7-docking: Didn't run or was cancelled before finishing
-
imgui/1.88: Didn't run or was cancelled before finishing
-
imgui/1.86: Didn't run or was cancelled before finishing
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
Martin Valgur seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.
You have signed the CLA already but the status is still pending? Let us recheck it.