conan-center-index icon indicating copy to clipboard operation
conan-center-index copied to clipboard

arrow: fix recipe when arrow/*:parquet=True

Open robomics opened this issue 1 year ago • 32 comments

Specify library name and version: arrow/all

When the arrow package is built with arrow/*:parquet=True, arrow/*:with_thrift=True is also required. Thrift is found by Arrow by calling FindThriftAlt.cmake, which uses some custom logic to define thrift::thrift when the project is compiled on Windows.

This causes the transitive_header=True specified in Thrift's recipe to be ignored. https://github.com/conan-io/conan-center-index/blob/b4b8a8dac707a71de0f0552970dfb809146a687f/recipes/thrift/all/conanfile.py#L69-L70

This PR patches FindThriftAlt.cmake so that find_package(Thrift) is always called.

Fixes https://github.com/conan-io/conan-center-index/issues/20082 (note that without the patch I am unable to build the package using MSVC regardless of the build_type).

While debugging the above issue I also realized that ARROW_WITH_RE2 was not explicitly set by the recipe, which on my machine causes compilation to fail for v11.0.0. This PR also addresses this issue.

Finally, I am bumping thrift, xsimd, and zstdto avoid version conflicts with other packages on cci.


robomics avatar May 20 '24 19:05 robomics

Conan v1 pipeline :heavy_check_mark:

All green in build 2 (a8f9fdeb36554ac1795bd29c5cd1d472cce694c7):

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)


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.

See details:

Failure in build 2 (a8f9fdeb36554ac1795bd29c5cd1d472cce694c7):

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Do not raise ConanInvalidConfiguration from build() method. Please, move that same check to validate() method.

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: 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-center-bot avatar May 21 '24 00:05 conan-center-bot

Thanks! Please also set parquet=True in default_options as well. It was only left disabled due to build issues in the last PR and this one should probably fix these.

valgur avatar May 21 '24 07:05 valgur

Another thing I noticed, is that arrow always uses a vendored version of mimalloc: https://github.com/apache/arrow/blob/b2e8c33c86c819b167a1cbca834da3c9047a9350/cpp/cmake_modules/ThirdpartyToolchain.cmake#L2197-L2204

Should I drop mimalloc from the requirement list (but leave the option to toggle mimalloc on or off)?

robomics avatar May 21 '24 08:05 robomics

Conan v1 pipeline :x:

Failure in build 3 (7fd393ba43d4599867b3d45aac83dd988d55facf):

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: CI failed to create some packages (All logs)

    Logs for packageID 96c23f32f20ec1e6014b08093d111876212c4173:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=Visual Studio
    compiler.runtime=MDd
    compiler.version=16
    os=Windows
    [options]
    arrow:shared=True
    
    [...]
    arrow/8.0.0: 
    CMake Warning at CMakeLists.txt:165 (find_package):
      By not providing "FindClangTools.cmake" in CMAKE_MODULE_PATH this project
      has asked CMake to find a package configuration file provided by
      "ClangTools", but CMake did not find one.
    
      Could not find a package configuration file provided by "ClangTools" with
      any of the following names:
    
        ClangToolsConfig.cmake
        clangtools-config.cmake
    
      Add the installation prefix of "ClangTools" to CMAKE_PREFIX_PATH or set
      "ClangTools_DIR" to a directory containing one of the above files.  If
      "ClangTools" provides a separate development package or SDK, be sure it has
      been installed.
    
    
    CMake Warning at CMakeLists.txt:166 (find_package):
      By not providing "FindInferTools.cmake" in CMAKE_MODULE_PATH this project
      has asked CMake to find a package configuration file provided by
      "InferTools", but CMake did not find one.
    
      Could not find a package configuration file provided by "InferTools" with
      any of the following names:
    
        InferToolsConfig.cmake
        infertools-config.cmake
    
      Add the installation prefix of "InferTools" to CMAKE_PREFIX_PATH or set
      "InferTools_DIR" to a directory containing one of the above files.  If
      "InferTools" provides a separate development package or SDK, be sure it has
      been installed.
    
    
    fatal: not a git repository (or any of the parent directories): .git
    Configured for RELEASE build (set with cmake -DCMAKE_BUILD_TYPE={release,debug,...})
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: openssl/3.2.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.17.0 to openssl/3.2.1 
    boost/1.84.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
    arrow/8.0.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
    arrow/8.0.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
    arrow/8.0.0: ERROR: Package '96c23f32f20ec1e6014b08093d111876212c4173' build failed
    arrow/8.0.0: WARN: Build folder C:/J/workspace/prod-v1/bsr/46144/cdada/s\762e79\1\build
    ERROR: arrow/8.0.0: Error in build() method, line 415
    	cmake.build()
    	ConanException: Error 1 while executing cmake --build "C:/J/workspace/prod-v1/bsr/46144/cdada/s\762e79\1\build" --config Debug
    
  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/7.0.0: 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.

See details:

Failure in build 3 (7fd393ba43d4599867b3d45aac83dd988d55facf):

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Do not raise ConanInvalidConfiguration from build() method. Please, move that same check to validate() method.

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.0: 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-center-bot avatar May 21 '24 11:05 conan-center-bot

Conan v1 pipeline :x:

Failure in build 5 (c578dfb596c1a9174bb9c01fe7a384d5fd4725b0):

  • arrow/16.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/16.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/11.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/11.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/14.0.2: Error running command conan export recipes/arrow/all/conanfile.py arrow/14.0.2@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/14.0.1: Error running command conan export recipes/arrow/all/conanfile.py arrow/14.0.1@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/14.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/14.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/12.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/12.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/15.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/15.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/12.0.1: Error running command conan export recipes/arrow/all/conanfile.py arrow/12.0.1@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/10.0.1: Error running command conan export recipes/arrow/all/conanfile.py arrow/10.0.1@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/10.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/10.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/8.0.1: Error running command conan export recipes/arrow/all/conanfile.py arrow/8.0.1@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/8.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/8.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/7.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/7.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    
  • arrow/13.0.0: Error running command conan export recipes/arrow/all/conanfile.py arrow/13.0.0@:

    [HOOK - conan-center.py] pre_export(): [DEPRECATED GLOBAL CPPSTD (KB-H001)] OK
    [HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK
    [HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK
    [HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK
    [HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 81.6669921875 KB
    [HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None
    [HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE FOLDER (KB-H024)] OK
    [HOOK - conan-center.py] pre_export(): [META LINES (KB-H025)] OK
    [HOOK - conan-center.py] pre_export(): [CONAN CENTER INDEX URL (KB-H027)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE MINIMUM VERSION (KB-H028)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - RUN ENVIRONMENT (KB-H029)] OK
    [HOOK - conan-center.py] pre_export(): [SYSTEM REQUIREMENTS (KB-H032)] OK
    [HOOK - conan-center.py] pre_export(): [CONANDATA.YML FORMAT (KB-H030)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO IMPORTS() (KB-H034)] OK
    [HOOK - conan-center.py] pre_export(): [NO AUTHOR (KB-H037)] OK
    [HOOK - conan-center.py] pre_export(): [NOT ALLOWED ATTRIBUTES (KB-H039)] OK
    [HOOK - conan-center.py] pre_export(): [NO TARGET NAME (KB-H040)] OK
    [HOOK - conan-center.py] pre_export(): [NO FINAL ENDLINE (KB-H041)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRES.ADD() (KB-H044)] OK
    [HOOK - conan-center.py] pre_export(): [DELETE OPTIONS (KB-H045)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERBOSE MAKEFILE (KB-H046)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE VERSION REQUIRED (KB-H048)] OK
    [HOOK - conan-center.py] pre_export(): [CMAKE WINDOWS EXPORT ALL SYMBOLS (KB-H049)] OK
    [HOOK - conan-center.py] pre_export(): [DEFAULT OPTIONS AS DICTIONARY (KB-H051)] OK
    [HOOK - conan-center.py] pre_export(): [CONFIG.YML HAS NEW VERSION (KB-H052)] OK
    [HOOK - conan-center.py] pre_export(): [PRIVATE IMPORTS (KB-H053)] OK
    [HOOK - conan-center.py] pre_export(): [SINGLE REQUIRES (KB-H055)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS RENAME (KB-H057)] OK
    [HOOK - conan-center.py] pre_export(): [ILLEGAL CHARACTERS (KB-H058)] OK
    [HOOK - conan-center.py] pre_export(): [CLASS NAME (KB-H059)] OK
    [HOOK - conan-center.py] pre_export(): [NO CRLF (KB-H060)] OK
    [HOOK - conan-center.py] pre_export(): [NO BUILD SYSTEM FUNCTIONS (KB-H061)] OK
    [HOOK - conan-center.py] pre_export(): [TOOLS CROSS BUILDING (KB-H062)] OK
    [HOOK - conan-center.py] pre_export(): [INVALID TOPICS (KB-H064)] OK
    [HOOK - conan-center.py] pre_export(): [NO REQUIRED_CONAN_VERSION (KB-H065)] OK
    [HOOK - conan-center.py] pre_export(): [TEST_TYPE MANAGEMENT (KB-H068)] OK
    [HOOK - conan-center.py] pre_export(): [TEST PACKAGE - NO DEFAULT OPTIONS (KB-H069)] OK
    [HOOK - conan-center.py] pre_export(): [MANDATORY SETTINGS (KB-H070)] OK
    [HOOK - conan-center.py] pre_export(): [PYLINT EXECUTION (KB-H072)] OK
    [HOOK - conan-center.py] pre_export(): [REQUIREMENT OVERRIDE PARAMETER (KB-H075)] OK
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    [HOOK - conan-center.py] pre_export(): ERROR: [NO DANGLING PATCHES (KB-H078)] The versions {'9.0.0'} are in 'patches' but not in 'sources'. (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H078-NO-DANGLING-PATCHES) 
    ERROR: [HOOK - conan-center.py] pre_export(): Some checks failed running the hook, check the output
    

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.

See details:

Failure in build 5 (c578dfb596c1a9174bb9c01fe7a384d5fd4725b0):

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: CI failed to create some packages (All logs)

    Logs for packageID 20546bc0eef117297963897610599941261b8512:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
    boost/1.84.0: Decompressing 22.0MB conan_package.tgz
    boost/1.84.0: Package installed 88c57c42579c67ff332a736b9e5a4bfbe3a4bd8e
    boost/1.84.0: Downloaded package revision bd985c3017c10cbffc6078a1365fca47
    openssl/3.2.1: Retrieving package ba0c965640dfc9185194d683d05bfbe6419b47a3 from remote 'conan-center' 
    openssl/3.2.1: Package installed ba0c965640dfc9185194d683d05bfbe6419b47a3
    openssl/3.2.1: Downloaded package revision d1726bfc4b66d9392fb7e73a90ed3d9c
    libevent/2.1.12: Retrieving package 7cd992aaaf0e237a1f0a7d7d02d5cd5aaa8d750b from remote 'conan-center' 
    libevent/2.1.12: Package installed 7cd992aaaf0e237a1f0a7d7d02d5cd5aaa8d750b
    libevent/2.1.12: Downloaded package revision d3328db875ac6022f63e5c7d643e73cc
    thrift/0.17.0: Retrieving package 27676dc944672531afb826e3566e8c8fb2601f03 from remote 'conan-center' 
    thrift/0.17.0: Package installed 27676dc944672531afb826e3566e8c8fb2601f03
    thrift/0.17.0: Downloaded package revision cdb7c81fdd7ef2977274973451f7454b
    thrift/0.17.0: Appending PATH env var with : /home/conan/workspace/prod-v2/bsr/41246/befbc/p/thrifc1b1ec83eb820/p/bin
    arrow/8.0.0: Calling source() in /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/src
    arrow/8.0.0: Downloading 18.0MB ad9a05705117c989c116bae9ac70492fe015050e1b80fb0e38fde4b5d863aaa3
    arrow/8.0.0: Sources for https://www.apache.org/dyn/closer.lua/arrow/arrow-8.0.0/apache-arrow-8.0.0.tar.gz?action=download found in remote backup https://c3i.jfrog.io/artifactory/conan-center-backup-sources/
    
    -------- Installing package arrow/8.0.0 (9 of 9) --------
    arrow/8.0.0: Building from source
    arrow/8.0.0: Package arrow/8.0.0:20546bc0eef117297963897610599941261b8512
    arrow/8.0.0: Copying sources to build folder
    arrow/8.0.0: Building your package in /home/conan/workspace/prod-v2/bsr/41246/befbc/p/b/arrowaa76711d3eb5d/b
    arrow/8.0.0: Calling generate()
    arrow/8.0.0: Generators folder: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/b/arrowaa76711d3eb5d/b/build/Release/generators
    arrow/8.0.0: CMakeToolchain generated: conan_toolchain.cmake
    arrow/8.0.0: CMakeToolchain generated: CMakePresets.json
    arrow/8.0.0: CMakeDeps necessary find_package() and targets for your CMakeLists.txt
        find_package(Thrift)
        find_package(Boost)
        find_package(xsimd)
        target_link_libraries(... thrift::thrift-conan-do-not-use boost::boost xsimd)
    arrow/8.0.0: Generating aggregated env files
    arrow/8.0.0: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh']
    arrow/8.0.0: Calling build()
    arrow/8.0.0: Apply patch (conan): enable utils installation
    arrow/8.0.0: Apply patch (conan): use cci package
    arrow/8.0.0: Apply patch (conan): do not look for static analyzers
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch: file 1/1:	 b'cpp/CMakeLists.txt'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:  hunk no.1 doesn't match source file at line 161
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:   expected: b'  set(MSVC_TOOLCHAIN FALSE)'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:   actual  : b'else()'
    arrow/8.0.0: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch: source file is different - b'cpp/CMakeLists.txt'
    arrow/8.0.0: ERROR: 
    Package '20546bc0eef117297963897610599941261b8512' build failed
    arrow/8.0.0: WARN: Build folder /home/conan/workspace/prod-v2/bsr/41246/befbc/p/b/arrowaa76711d3eb5d/b/build/Release
    ERROR: arrow/8.0.0: Error in build() method, line 412
    	self._patch_sources()
    while calling '_patch_sources', line 391
    	apply_conandata_patches(self)
    	ConanException: Failed to apply patch: /home/conan/workspace/prod-v2/bsr/41246/befbc/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch
    

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-center-bot avatar May 21 '24 14:05 conan-center-bot

Conan v1 pipeline :x:

Failure in build 6 (64a89761a214be8356abeb6110ea074804d99389):

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.0: CI failed to create some packages (All logs)

    Logs for packageID 3295e0a706594b10e3426960e4008a88009138b7:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=5
    os=Linux
    [options]
    arrow:shared=False
    
    [...]
    Downloading conaninfo.txt
    Downloading conan_package.tgz
    libevent/2.1.12: Package installed 2b65f59f296c8675d9e04308025fc41b43acbe9d
    libevent/2.1.12: Downloaded package revision 9a9a3d344ef7d2abe46c0945379424ab
    thrift/0.17.0: Retrieving package 99ca005cbdf781785b5e0106af3dbb21111c7661 from remote 'conan-center' 
    Downloading conanmanifest.txt
    Downloading conaninfo.txt
    Downloading conan_package.tgz
    thrift/0.17.0: Package installed 99ca005cbdf781785b5e0106af3dbb21111c7661
    thrift/0.17.0: Downloaded package revision 76a4a589c50f4f75d935620ea40a9073
    thrift/0.17.0: Appending PATH env var with : /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/thrift/0.17.0/_/_/package/99ca005cbdf781785b5e0106af3dbb21111c7661/bin
    [HOOK - conan-center.py] pre_source(): [IMMUTABLE SOURCES (KB-H010)] OK
    arrow/8.0.0: Configuring sources in /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/source/src
    arrow/8.0.0: 
    [HOOK - conan-center.py] post_source(): [LIBCXX MANAGEMENT (KB-H011)] OK
    [HOOK - conan-center.py] post_source(): [CPPSTD MANAGEMENT (KB-H022)] OK
    [HOOK - conan-center.py] post_source(): [SHORT_PATHS USAGE (KB-H066)] OK
    arrow/8.0.0: Copying sources to build folder
    arrow/8.0.0: Building your package in /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7
    arrow/8.0.0: Generator txt created conanbuildinfo.txt
    arrow/8.0.0: Calling generate()
    arrow/8.0.0: Preset 'release' added to CMakePresets.json. Invoke it manually using 'cmake --preset release'
    arrow/8.0.0: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/build/Release/generators/conan_toolchain.cmake -DCMAKE_PROJECT_arrow_INCLUDE=/home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/src/conan_cmake_project_include.cmake -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release'
    arrow/8.0.0: Aggregating env generators
    [HOOK - conan-center.py] pre_build(): [FPIC MANAGEMENT (KB-H007)] OK. 'fPIC' option found and apparently well managed
    [HOOK - conan-center.py] pre_build(): [FPIC MANAGEMENT (KB-H007)] OK
    arrow/8.0.0: Calling build()
    arrow/8.0.0: Apply patch (conan): enable utils installation
    arrow/8.0.0: Apply patch (conan): use cci package
    arrow/8.0.0: Apply patch (conan): do not look for static analyzers
    arrow/8.0.0: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch: source file is different - b'cpp/CMakeLists.txt'
    arrow/8.0.0: 
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: openssl/3.2.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.17.0 to openssl/3.2.1 
    arrow/8.0.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
    arrow/8.0.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
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch: file 1/1:	 b'cpp/CMakeLists.txt'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch:  hunk no.1 doesn't match source file at line 161
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch:   expected: b'  set(MSVC_TOOLCHAIN FALSE)'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch:   actual  : b'else()'
    arrow/8.0.0: ERROR: Package '3295e0a706594b10e3426960e4008a88009138b7' build failed
    arrow/8.0.0: WARN: Build folder /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/build/Release
    ERROR: arrow/8.0.0: Error in build() method, line 412
    	self._patch_sources()
    while calling '_patch_sources', line 391
    	apply_conandata_patches(self)
    	ConanException: Failed to apply patch: /home/conan/workspace/prod-v1/bsr/46349/eeabb/.conan/data/arrow/8.0.0/_/_/build/3295e0a706594b10e3426960e4008a88009138b7/patches/7.0.0-0008-static-analyzers.patch
    

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.

See details:

Failure in build 6 (64a89761a214be8356abeb6110ea074804d99389):

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: CI failed to create some packages (All logs)

    Logs for packageID 20546bc0eef117297963897610599941261b8512:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
    boost/1.84.0: Decompressing 22.0MB conan_package.tgz
    boost/1.84.0: Package installed 88c57c42579c67ff332a736b9e5a4bfbe3a4bd8e
    boost/1.84.0: Downloaded package revision bd985c3017c10cbffc6078a1365fca47
    openssl/3.2.1: Retrieving package ba0c965640dfc9185194d683d05bfbe6419b47a3 from remote 'conan-center' 
    openssl/3.2.1: Package installed ba0c965640dfc9185194d683d05bfbe6419b47a3
    openssl/3.2.1: Downloaded package revision d1726bfc4b66d9392fb7e73a90ed3d9c
    libevent/2.1.12: Retrieving package 7cd992aaaf0e237a1f0a7d7d02d5cd5aaa8d750b from remote 'conan-center' 
    libevent/2.1.12: Package installed 7cd992aaaf0e237a1f0a7d7d02d5cd5aaa8d750b
    libevent/2.1.12: Downloaded package revision d3328db875ac6022f63e5c7d643e73cc
    thrift/0.17.0: Retrieving package 27676dc944672531afb826e3566e8c8fb2601f03 from remote 'conan-center' 
    thrift/0.17.0: Package installed 27676dc944672531afb826e3566e8c8fb2601f03
    thrift/0.17.0: Downloaded package revision cdb7c81fdd7ef2977274973451f7454b
    thrift/0.17.0: Appending PATH env var with : /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/thrifc1b1ec83eb820/p/bin
    arrow/8.0.0: Calling source() in /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/src
    arrow/8.0.0: Downloading 18.0MB ad9a05705117c989c116bae9ac70492fe015050e1b80fb0e38fde4b5d863aaa3
    arrow/8.0.0: Sources for https://www.apache.org/dyn/closer.lua/arrow/arrow-8.0.0/apache-arrow-8.0.0.tar.gz?action=download found in remote backup https://c3i.jfrog.io/artifactory/conan-center-backup-sources/
    
    -------- Installing package arrow/8.0.0 (9 of 9) --------
    arrow/8.0.0: Building from source
    arrow/8.0.0: Package arrow/8.0.0:20546bc0eef117297963897610599941261b8512
    arrow/8.0.0: Copying sources to build folder
    arrow/8.0.0: Building your package in /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/b/arrow20371b47f8745/b
    arrow/8.0.0: Calling generate()
    arrow/8.0.0: Generators folder: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/b/arrow20371b47f8745/b/build/Release/generators
    arrow/8.0.0: CMakeToolchain generated: conan_toolchain.cmake
    arrow/8.0.0: CMakeToolchain generated: CMakePresets.json
    arrow/8.0.0: CMakeDeps necessary find_package() and targets for your CMakeLists.txt
        find_package(Thrift)
        find_package(Boost)
        find_package(xsimd)
        target_link_libraries(... thrift::thrift-conan-do-not-use boost::boost xsimd)
    arrow/8.0.0: Generating aggregated env files
    arrow/8.0.0: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh']
    arrow/8.0.0: Calling build()
    arrow/8.0.0: Apply patch (conan): enable utils installation
    arrow/8.0.0: Apply patch (conan): use cci package
    arrow/8.0.0: Apply patch (conan): do not look for static analyzers
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch: file 1/1:	 b'cpp/CMakeLists.txt'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:  hunk no.1 doesn't match source file at line 161
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:   expected: b'  set(MSVC_TOOLCHAIN FALSE)'
    arrow/8.0.0: WARN: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch:   actual  : b'else()'
    arrow/8.0.0: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch: source file is different - b'cpp/CMakeLists.txt'
    arrow/8.0.0: ERROR: 
    Package '20546bc0eef117297963897610599941261b8512' build failed
    arrow/8.0.0: WARN: Build folder /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/b/arrow20371b47f8745/b/build/Release
    ERROR: arrow/8.0.0: Error in build() method, line 412
    	self._patch_sources()
    while calling '_patch_sources', line 391
    	apply_conandata_patches(self)
    	ConanException: Failed to apply patch: /home/conan/workspace/prod-v2/bsr/41272/acfbb/p/arrowd969d218d7820/s/patches/7.0.0-0008-static-analyzers.patch
    

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-center-bot avatar May 21 '24 14:05 conan-center-bot

Conan v1 pipeline :x:

Failure in build 7 (cba2cd11cd6ff20df9ad1638655a469ba6311ef6):

An unexpected error happened and has been reported. Help is on its way! :horse_racing:


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.

See details:

Failure in build 7 (cba2cd11cd6ff20df9ad1638655a469ba6311ef6):

  • arrow/15.0.0: Do not raise ConanInvalidConfiguration from build() method. Please, move that same check to validate() method.

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.0: 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-center-bot avatar May 21 '24 15:05 conan-center-bot

Conan v1 pipeline :x:

Failure in build 8 (cba2cd11cd6ff20df9ad1638655a469ba6311ef6):

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: CI failed to create some packages (All logs)

    Logs for packageID 7e6f8d5588f45e3973ad0b6c95d4c005bc88e5d8:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=Visual Studio
    compiler.runtime=MD
    compiler.version=16
    os=Windows
    [options]
    arrow:shared=True
    
    [...]
      scalar_cast_boolean.cc
      scalar_cast_dictionary.cc
      scalar_cast_internal.cc
      scalar_cast_nested.cc
      scalar_cast_numeric.cc
      scalar_cast_string.cc
      scalar_cast_temporal.cc
      scalar_compare.cc
      scalar_if_else.cc
      scalar_nested.cc
      scalar_random.cc
      scalar_set_lookup.cc
      scalar_string_ascii.cc
      scalar_string_utf8.cc
      scalar_temporal_binary.cc
      scalar_temporal_unary.cc
      scalar_validity.cc
      util_internal.cc
      vector_array_sort.cc
      vector_hash.cc
      vector_nested.cc
      vector_replace.cc
      vector_selection.cc
      vector_sort.cc
      dictionary.cc
      feather.cc
      message.cc
      metadata_internal.cc
      reader.cc
      writer.cc
      Building Custom Rule C:/J/workspace/prod-v1/bsr/46608/daeea/s/42b72d/1/src/cpp/src/parquet/CMakeLists.txt
      parquet_constants.cpp
      parquet_types.cpp
      parquet_test_support.vcxproj -> C:\J\workspace\prod-v1\bsr\46608\daeea\s\42b72d\1\build\release\Release\parquet_test_support.lib
    arrow/8.0.1: 
    fatal: not a git repository (or any of the parent directories): .git
    Configured for RELEASE build (set with cmake -DCMAKE_BUILD_TYPE={release,debug,...})
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: openssl/3.2.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.17.0 to openssl/3.2.1 
    boost/1.84.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
    arrow/8.0.1: 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
    arrow/8.0.1: 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
    arrow/8.0.1: ERROR: Package '7e6f8d5588f45e3973ad0b6c95d4c005bc88e5d8' build failed
    arrow/8.0.1: WARN: Build folder C:/J/workspace/prod-v1/bsr/46608/daeea/s\42b72d\1\build
    ERROR: arrow/8.0.1: Error in build() method, line 415
    	cmake.build()
    	ConanException: Error 1 while executing cmake --build "C:/J/workspace/prod-v1/bsr/46608/daeea/s\42b72d\1\build" --config Release
    
  • arrow/8.0.0: 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.

See details:

Failure in build 10 (cba2cd11cd6ff20df9ad1638655a469ba6311ef6):

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Do not raise ConanInvalidConfiguration from build() method. Please, move that same check to validate() method.

  • arrow/10.0.0: 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-center-bot avatar May 21 '24 23:05 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 10 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)


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.

See details:

Failure in build 12 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/16.0.0: Do not raise ConanInvalidConfiguration from build() method. Please, move that same check to validate() method.

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: 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-center-bot avatar May 22 '24 22:05 conan-center-bot

@RubenRBS I think this is ready for review :).

The conan v2 pipeline failure seems to be due to the same issue described in https://github.com/conan-io/conan-center-index/pull/24011.

robomics avatar May 23 '24 07:05 robomics

Conan v1 pipeline :x:

Sorry, the system is under maintenance and it doesn't accept builds right now.

Motivation: Internal maitenance Jun 12th

Please, check https://status.conan.io to obtain more information. Thanks for your understanding and help with the Conan Center Index!

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.

See details:

Sorry, the system is under maintenance and it doesn't accept builds right now.

Motivation: Internal maitenance Jun 12th

Please, check https://status.conan.io to obtain more information. Thanks for your understanding and help with the Conan Center Index!

conan-center-bot avatar Jun 12 '24 12:06 conan-center-bot

Conan v1 pipeline :x:

Failure in build 12 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: An unexpected error happened and has been reported

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: 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.

See details:

Failure in build 14 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Error running command conan graph info --requires arrow/11.0.0@#c6949e7bce97088b0c3dc9f63850cbf3 --build arrow/11.0.0@#c6949e7bce97088b0c3dc9f63850cbf3 -f json -pr:h /home/conan/workspace/prod-v2/bsr/50932/eebce/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/50932/eebce/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:

    ======== Computing dependency graph ========
    thrift/0.17.0: Not found in local cache, looking in remotes...
    thrift/0.17.0: Checking remote: conan-center
    thrift/0.17.0: Downloaded recipe revision c79319d67eaaf8637e5bd8fb31a364fa
    Graph root
        cli
    Requirements
        arrow/11.0.0#c6949e7bce97088b0c3dc9f63850cbf3 - Cache
        thrift/0.17.0#c79319d67eaaf8637e5bd8fb31a364fa - Downloaded (conan-center)
    ERROR: Version conflict: Conflict between boost/1.85.0 and boost/1.84.0 in the graph.
    Conflict originates from thrift/0.17.0
    
    Run 'conan graph info ... --format=html > graph.html' and open 'graph.html' to inspect the conflict graphically.
    
  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/7.0.0: 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-center-bot avatar Jun 12 '24 19:06 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 13 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)


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.

See details:

Failure in build 15 (c46189da8c13795b749d5432af5a67cc1e62b7eb):

  • arrow/14.0.0: Error running command conan graph info --requires arrow/14.0.0@#aaa27f457794e0485caff7d1c3643d02 --build arrow/14.0.0@#aaa27f457794e0485caff7d1c3643d02 -f json -pr:h /home/conan/workspace/prod-v2/bsr/51201/dfebc/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/51201/dfebc/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:

    ======== Computing dependency graph ========
    thrift/0.17.0: Not found in local cache, looking in remotes...
    thrift/0.17.0: Checking remote: conan-center
    thrift/0.17.0: Downloaded recipe revision c79319d67eaaf8637e5bd8fb31a364fa
    Graph root
        cli
    Requirements
        arrow/14.0.0#aaa27f457794e0485caff7d1c3643d02 - Cache
        thrift/0.17.0#c79319d67eaaf8637e5bd8fb31a364fa - Downloaded (conan-center)
    ERROR: Version conflict: Conflict between boost/1.85.0 and boost/1.84.0 in the graph.
    Conflict originates from thrift/0.17.0
    
    Run 'conan graph info ... --format=html > graph.html' and open 'graph.html' to inspect the conflict graphically.
    
  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.0: 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-center-bot avatar Jun 13 '24 12:06 conan-center-bot

We're fixing the conflict from Conan 2 in a separate PR, will re-trigger once it gets fixed :)

AbrilRBS avatar Jun 13 '24 13:06 AbrilRBS

@RubenRBS any updates regarding the PR?

robomics avatar Jun 26 '24 14:06 robomics

Sorry @robomics the name change made me miss the notification.

The idea was to bump xsimd here too, but we ran into some issues there, which we're trying to address before pushing a PR out, sorry for the delay

Also, regarding

Should I drop mimalloc from the requirement list (but leave the option to toggle mimalloc on or off)?

My main concern here is whether the minmalloc symbols are leaked to the dependencies of this library. If so, keeping mimalloc as a dependency might be a nice solution to avoid duplicated symbols!

AbrilRBS avatar Jul 04 '24 21:07 AbrilRBS

@AbrilRBS, @uilianries any updates on this?

I kindof need to build arrow with parquet support on windows in one of my projects.

I am more than happy to open other PRs to fix version conflicts with e.g. xsimd. Just let me know how can I be of help :)

robomics avatar Aug 07 '24 17:08 robomics

Conan v1 pipeline :x:

Failure in build 14 (da8f50178cc0a7ad2f36f1d7d475546578b21d0e):

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/17.0.0: CI failed to create some packages (All logs)

    Logs for packageID 7d2f2faab9c22583a70588a1abe26deabbe7024a:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=Visual Studio
    compiler.runtime=MDd
    compiler.version=16
    os=Windows
    [options]
    arrow:shared=False
    
    [...]
    -- Conan: Component target declared 'Boost::wserialization'
    -- Conan: Component target declared 'Boost::chrono'
    -- Conan: Component target declared 'Boost::coroutine'
    -- Conan: Component target declared 'Boost::filesystem'
    -- Conan: Component target declared 'Boost::json'
    -- Conan: Component target declared 'Boost::nowide'
    -- Conan: Component target declared 'Boost::prg_exec_monitor'
    -- Conan: Component target declared 'Boost::random'
    -- Conan: Component target declared 'Boost::thread'
    -- Conan: Component target declared 'Boost::type_erasure'
    -- Conan: Component target declared 'Boost::unit_test_framework'
    -- Conan: Component target declared 'Boost::wave'
    -- Conan: Component target declared 'Boost::contract'
    -- Conan: Component target declared 'Boost::iostreams'
    -- Conan: Component target declared 'Boost::locale'
    -- Conan: Component target declared 'Boost::log'
    -- Conan: Component target declared 'Boost::log_setup'
    -- Conan: Target declared 'boost::boost'
    -- Conan: Target declared 'BZip2::BZip2'
    -- Conan: Including build module from 'C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/.conan/data/bzip2/1.0.8/_/_/package/589a23dff5fdb23a7fb851223eb766480ead0a9a/lib/cmake/conan-official-bzip2-variables.cmake'
    -- Conan: Target declared 'ZLIB::ZLIB'
    -- Boost include dir: C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s/2ec624/1/include
    -- Building without OpenSSL support. Minimum OpenSSL version 1.0.2 required.
    -- Configuring incomplete, errors occurred!
    arrow/17.0.0: 
    fatal: not a git repository (or any of the parent directories): .git
    CMake Error at C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/.conan/data/cmake/3.30.1/_/_/package/ca33edce272a279b24f87dc0d4cf5bbdcffbc187/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
      Could NOT find ThriftAlt (missing: ThriftAlt_LIB) (found suitable version
      "0.17.0", minimum required is "0.11.0")
    Call Stack (most recent call first):
      C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/.conan/data/cmake/3.30.1/_/_/package/ca33edce272a279b24f87dc0d4cf5bbdcffbc187/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake:603 (_FPHSA_FAILURE_MESSAGE)
      cmake_modules/FindThriftAlt.cmake:164 (find_package_handle_standard_args)
      cmake_modules/ThirdpartyToolchain.cmake:310 (find_package)
      cmake_modules/ThirdpartyToolchain.cmake:1780 (resolve_dependency)
      CMakeLists.txt:544 (include)
    
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.85.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.17.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.17.0 to openssl/3.3.1 
    boost/1.85.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
    arrow/17.0.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
    arrow/17.0.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
    arrow/17.0.0: ERROR: Package '7d2f2faab9c22583a70588a1abe26deabbe7024a' build failed
    arrow/17.0.0: WARN: Build folder C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s\c3001b\1\build
    ERROR: arrow/17.0.0: Error in build() method, line 415
    	cmake.configure(build_script_folder=os.path.join(self.source_folder, "cpp"))
    	ConanException: Error 1 while executing cmake -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s/c3001b/1/build/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s/fe9055/1" -DCMAKE_PROJECT_arrow_INCLUDE="C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s\c3001b\1\src\conan_cmake_project_include.cmake" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" "C:/J/workspace/prod-v1/bsr@3/84884/fbbfd/s\c3001b\1\src\cpp"
    
  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: 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 16 (da8f50178cc0a7ad2f36f1d7d475546578b21d0e):

  • arrow/17.0.0: CI failed to create some packages (All logs)

    Logs for packageID 0f22f30a83e3baba3b0b659091916f4cf9496674:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=msvc
    compiler.cppstd=17
    compiler.runtime=dynamic
    compiler.runtime_type=Release
    compiler.version=192
    os=Windows
    [options]
    */*:shared=False
    
    [...]
      dlpack.cc
      arrow_static.vcxproj -> C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\release\Release\arrow_static.lib
      Building Custom Rule C:/J/workspace/prod-v2/bsr/76404/fabab/p/b/arrow3f12fd5376448/b/src/cpp/src/parquet/CMakeLists.txt
      path_internal.cc
      reader.cc
      reader_internal.cc
      schema_internal.cc
      writer.cc
      bloom_filter.cc
      bloom_filter_reader.cc
      column_reader.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\bloom_filter.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
      column_scanner.cc
      column_writer.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\column_reader.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
      encoding.cc
      encryption.cc
      internal_file_decryptor.cc
      internal_file_encryptor.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\column_writer.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
      exception.cc
      file_reader.cc
      file_writer.cc
      level_comparison.cc
      level_conversion.cc
      metadata.cc
      xxhasher.cc
      page_index.cc
      parquet_constants.cpp
      parquet_types.cpp
      platform.cc
      printer.cc
      properties.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\generated\parquet_constants.cpp) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\metadata.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
      statistics.cc
      stream_reader.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\page_index.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\generated\parquet_types.cpp) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
      stream_writer.cc
      types.cc
      encryption_internal_nossl.cc
    C:/J/workspace/prod-v2/bsr/76404/fabab/p/thrif734cce365ada6/p/include\thrift/transport/TTransportException.h(23,10): fatal error C1083: Cannot open include file: 'boost/numeric/conversion/cast.hpp': No such file or directory (compiling source file C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\src\cpp\src\parquet\types.cc) [C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build\src\parquet\parquet_static.vcxproj]
    
    arrow/17.0.0: ERROR: 
    Package '0f22f30a83e3baba3b0b659091916f4cf9496674' build failed
    arrow/17.0.0: WARN: Build folder C:\J\workspace\prod-v2\bsr\76404\fabab\p\b\arrow3f12fd5376448\b\build
    ERROR: arrow/17.0.0: Error in build() method, line 416
    	cmake.build()
    	ConanException: Error 1 while executing
    
  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: 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-center-bot avatar Aug 14 '24 01:08 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 18 (18cec59c86b9358bffd11254b80bbb8685a8c484):

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (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 20 (18cec59c86b9358bffd11254b80bbb8685a8c484):

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

conan-center-bot avatar Aug 14 '24 18:08 conan-center-bot

uhm... It looks like the thrift package for v0.20.0 is missing (at least for Linux GCC). Would you mind looking into this @AbrilRBS?

robomics avatar Aug 14 '24 19:08 robomics

Conan v1 pipeline :x:

Failure in build 19 (3fc5e8a0aba29afc49c62da413569e40bc98bfbc):

  • arrow/16.0.0: CI failed to create some packages (All logs)

    Logs for packageID 71d4a363064eb1ef3259854e6086dec8c0f174fc:
    [settings]
    arch=armv8
    build_type=Debug
    compiler=apple-clang
    compiler.libcxx=libc++
    compiler.version=13.0
    os=Macos
    [options]
    arrow:shared=False
    
    [...]
        Version range '>=3.16 <4' required by 'arrow/16.0.0' resolved to 'cmake/3.30.1' in remote 'conan-center'
    
    Installing package: arrow/16.0.0
    Requirements
        arrow/16.0.0 from local cache - Cache
        boost/1.85.0 from 'conan-center' - Downloaded
        bzip2/1.0.8 from 'conan-center' - Downloaded
        libbacktrace/cci.20210118 from 'conan-center' - Downloaded
        libevent/2.1.12 from 'conan-center' - Downloaded
        libiconv/1.17 from 'conan-center' - Downloaded
        openssl/3.3.1 from 'conan-center' - Downloaded
        thrift/0.20.0 from 'conan-center' - Downloaded
        xsimd/13.0.0 from 'conan-center' - Downloaded
        zlib/1.3.1 from 'conan-center' - Downloaded
    Packages
        arrow/16.0.0:71d4a363064eb1ef3259854e6086dec8c0f174fc - Build
        boost/1.85.0:fe0c1b03d5c670c874e5b1c2aa4c0443682543c3 - Download
        bzip2/1.0.8:06955caeb41bcd97dbb7ebe09828eda1babd28fa - Download
        libbacktrace/cci.20210118:3558c54d13382045caaf9174821b7c2ba01fc8bc - Download
        libevent/2.1.12:ea86d501012c255f91975b63a3f3739462190975 - Download
        libiconv/1.17:3558c54d13382045caaf9174821b7c2ba01fc8bc - Download
        openssl/3.3.1:ff757993f715b5a535f74d927613dec74a6163f6 - Download
        thrift/0.20.0:4b1d435376de806e42d726e46e7ad74df2347ace - Missing
        xsimd/13.0.0:5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 - Download
        zlib/1.3.1:3558c54d13382045caaf9174821b7c2ba01fc8bc - Download
    Build requirements
        cmake/3.30.1 from 'conan-center' - Downloaded
    Build requirements packages
        cmake/3.30.1:cc471ed355602ffa7007968c83aa4e7e648a38b5 - Download
    
    Installing (downloading, building) binaries...
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.85.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.20.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.20.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.20.0 to openssl/3.3.1 
    ERROR: Missing binary: thrift/0.20.0:4b1d435376de806e42d726e46e7ad74df2347ace
    thrift/0.20.0: WARN: Can't find a 'thrift/0.20.0' package for the specified settings, options and dependencies:
    - Settings: arch=armv8, build_type=Debug, compiler=apple-clang, compiler.libcxx=libc++, compiler.version=13.0, os=Macos
    - Options: fPIC=True, shared=False, with_c_glib=False, with_cpp=True, with_haskell=False, with_java=False, with_libevent=True, with_openssl=True, with_python=False, with_qt5=False, with_zlib=True, boost:addr2line_location=/usr/bin/addr2line, boost:asio_no_deprecated=False, boost:buildid=None, boost:bzip2=True, boost:debug_level=0, boost:diagnostic_definitions=False, boost:error_code_header_only=False, boost:extra_b2_flags=None, boost:fPIC=True, boost:filesystem_no_deprecated=False, boost:filesystem_use_std_fs=False, boost:filesystem_version=None, boost:header_only=False, boost:i18n_backend=deprecated, boost:i18n_backend_iconv=libiconv, boost:i18n_backend_icu=False, boost:layout=system, boost:lzma=False, boost:magic_autolink=False, boost:multithreading=True, boost:namespace=boost, boost:namespace_alias=False, boost:numa=True, boost:pch=True, boost:python_executable=None, boost:python_version=None, boost:segmented_stacks=False, boost:shared=False, boost:system_no_deprecated=False, boost:system_use_utf8=False, boost:visibility=hidden, boost:with_stacktrace_backtrace=True, boost:without_atomic=False, boost:without_charconv=False, boost:without_chrono=False, boost:without_cobalt=True, boost:without_container=False, boost:without_context=False, boost:without_contract=False, boost:without_coroutine=False, boost:without_date_time=False, boost:without_exception=False, boost:without_fiber=False, boost:without_filesystem=False, boost:without_graph=True, boost:without_graph_parallel=True, boost:without_iostreams=False, boost:without_json=False, boost:without_locale=False, boost:without_log=False, boost:without_math=True, boost:without_mpi=True, boost:without_nowide=False, boost:without_program_options=False, boost:without_python=True, boost:without_random=False, boost:without_regex=False, boost:without_serialization=False, boost:without_stacktrace=False, boost:without_system=False, boost:without_test=False, boost:without_thread=False, boost:without_timer=False, boost:without_type_erasure=False, boost:without_url=False, boost:without_wave=False, boost:zlib=True, boost:zstd=False, bzip2:build_executable=True, bzip2:fPIC=True, bzip2:shared=False, libbacktrace:fPIC=True, libbacktrace:shared=False, libevent:disable_threads=False, libevent:fPIC=True, libevent:shared=False, libevent:with_openssl=True, libiconv:fPIC=True, libiconv:shared=False, openssl:386=False, openssl:enable_trace=False, openssl:enable_weak_ssl_ciphers=False, openssl:fPIC=True, openssl:no_apps=False, openssl:no_aria=False, openssl:no_asm=False, openssl:no_async=False, openssl:no_autoload_config=False, openssl:no_bf=False, openssl:no_blake2=False, openssl:no_camellia=False, openssl:no_cast=False, openssl:no_chacha=False, openssl:no_cms=False, openssl:no_comp=False, openssl:no_ct=False, openssl:no_deprecated=False, openssl:no_des=False, openssl:no_dgram=False, openssl:no_dh=False, openssl:no_dsa=False, openssl:no_dso=False, openssl:no_ec=False, openssl:no_ecdh=False, openssl:no_ecdsa=False, openssl:no_engine=False, openssl:no_filenames=False, openssl:no_fips=False, openssl:no_gost=False, openssl:no_idea=False, openssl:no_legacy=False, openssl:no_md2=True, openssl:no_md4=False, openssl:no_mdc2=False, openssl:no_module=False, openssl:no_ocsp=False, openssl:no_pinshared=False, openssl:no_rc2=False, openssl:no_rc4=False, openssl:no_rc5=False, openssl:no_rfc3779=False, openssl:no_rmd160=False, openssl:no_seed=False, openssl:no_sm2=False, openssl:no_sm3=False, openssl:no_sm4=False, openssl:no_sock=False, openssl:no_srp=False, openssl:no_srtp=False, openssl:no_sse2=False, openssl:no_ssl=False, openssl:no_ssl3=False, openssl:no_stdio=False, openssl:no_threads=False, openssl:no_tls1=False, openssl:no_ts=False, openssl:no_whirlpool=False, openssl:no_zlib=False, openssl:openssldir=None, openssl:shared=False, openssl:tls_security_level=None, zlib:fPIC=True, zlib:shared=False
    - Dependencies: boost/1.85.0, openssl/3.3.1, zlib/1.3.1, libevent/2.1.12
    - Requirements: boost/1.Y.Z, libevent/2.Y.Z, openssl/3.Y.Z, zlib/1.Y.Z
    - Package ID: 4b1d435376de806e42d726e46e7ad74df2347ace
    
    ERROR: Missing prebuilt package for 'thrift/0.20.0'
    Use 'conan search thrift/0.20.0@ --table=table.html -r=remote' and open the table.html file to see available packages
    Or try to build locally from sources with '--build=thrift'
    
    More Info at 'https://docs.conan.io/en/latest/faq/troubleshooting.html#error-missing-prebuilt-package'
    
  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/17.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: 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 (3fc5e8a0aba29afc49c62da413569e40bc98bfbc):

  • arrow/16.0.0: CI failed to create some packages (All logs)

    Logs for packageID 4c9962318f0936bbe91dc03c0f4a5d2555a627bc:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
        arrow/16.0.0#7126efd3d838288182ade44b2236cc73:4c9962318f0936bbe91dc03c0f4a5d2555a627bc - Build
        boost/1.85.0#0146e46a0e32fbb44e7189f25c193dae:903ad65dc0e9f5cb259446ba4050a62346e26d6d#b26add0e4b4c88a8f1e262144e09ae6e - Download (conan-center)
        bzip2/1.0.8#457c272f7da34cb9c67456dd217d36c4:763ddd53d7a4775fe84a285f56005a096d9786fd#53f22895547ac66130effcf590404b46 - Download (conan-center)
        libbacktrace/cci.20210118#a7691bfccd8caaf66309df196790a5a1:b647c43bfefae3f830561ca202b6cfd935b56205#0c3be7fde51a4161503332b05a3ebd5d - Download (conan-center)
        libevent/2.1.12#b6333a128075d75a3614bd8418bf2099:1283faef7ec6f5f2ed709b0d2889f3c0f87381bc#c0f4382b613dd5075cabc9787d7aa022 - Download (conan-center)
        openssl/3.3.1#279e86dc2a7dded8c1fe8512e775bdb1:ba0c965640dfc9185194d683d05bfbe6419b47a3#348932e168ba97026613b3b4daca50ad - Download (conan-center)
        thrift/0.20.0#31cd4d031653f03467ba430c4ecdd6d8:e554de3a7e049e0698371b6ac48be353b908b62a - Missing
        xsimd/13.0.0#3e7543dc526b0f612fe291e0f198c9dc:da39a3ee5e6b4b0d3255bfef95601890afd80709#06eff08e8fe56b1741f512fb95cc3f8c - Download (conan-center)
        zlib/1.3.1#f52e03ae3d251dec704634230cd806a2:b647c43bfefae3f830561ca202b6cfd935b56205#6b307bbcbae23635c4006543ffdbf3ef - Download (conan-center)
    Build requirements
        cmake/3.30.1#6d832cf2d46f6ec969ca5ed5b41f91eb:63fead0844576fc02943e16909f08fcdddd6f44b#041a38980949bccd356d9142f4e0a2bf - Download (conan-center)
    Skipped binaries
        b2/5.2.1, bison/3.8.2, flex/2.6.4, m4/1.4.19
    ERROR: Missing binary: thrift/0.20.0:e554de3a7e049e0698371b6ac48be353b908b62a
    
    thrift/0.20.0: WARN: Can't find a 'thrift/0.20.0' package binary 'e554de3a7e049e0698371b6ac48be353b908b62a' for the configuration:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    fPIC=True
    shared=False
    with_c_glib=False
    with_cpp=True
    with_haskell=False
    with_java=False
    with_libevent=True
    with_openssl=True
    with_python=False
    with_qt5=False
    with_zlib=True
    [requires]
    boost/1.85.Z
    bzip2/1.0.Z
    libbacktrace/cci
    libevent/2.1.Z
    openssl/3.3.Z
    zlib/1.3.Z
    
    ERROR: Missing prebuilt package for 'thrift/0.20.0'. You can try:
        - List all available packages using 'conan list "thrift/0.20.0:*" -r=remote'
        - Explain missing binaries: replace 'conan install ...' with 'conan graph explain ...'
        - Try to build locally from sources using the '--build=thrift/0.20.0' argument
    
    More Info at 'https://docs.conan.io/2/knowledge/faq.html#error-missing-prebuilt-package'
    
  • arrow/17.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: 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-center-bot avatar Aug 14 '24 20:08 conan-center-bot

@robomics building missing binaries now...

perseoGI avatar Aug 30 '24 11:08 perseoGI

Conan v1 pipeline :x:

Failure in build 20 (8993c7f2021b09e392826431d17009273928469c):

  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/17.0.0: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: CI failed to create some packages (All logs)

    Logs for packageID 741088beb4ff6692d4acd6eb57f21ef89216549e:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=Visual Studio
    compiler.runtime=MD
    compiler.version=16
    os=Windows
    [options]
    arrow:shared=False
    
    [...]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(300,16): message : see declaration of '_mm_cmplt_epi32' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
      vector_selection.cc
      vector_sort.cc
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(995,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(995,48): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(996,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(996,49): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C3536: 'xself': cannot be used before it is initialized (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C3536: 'xother': cannot be used before it is initialized (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C2664: '__m128i _mm_sub_epi64(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(997,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(248,16): message : see declaration of '_mm_sub_epi64' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(998,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(998,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(999,1): error C2664: '__m128i _mm_andnot_si128(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(999,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(259,16): message : see declaration of '_mm_andnot_si128' (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(1003,1): error C2440: 'return': cannot convert from '__m128i' to 'xsimd::batch_bool<T,A>' [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
              with
              [
                  T=int8_t,
                  A=xsimd::sse4_2
              ] (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc)
    C:\J\workspace\prod-v1\bsr@3\93707\cefce\.conan\data\xsimd\13.0.0\_\_\package\5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9\include\xsimd\arch\./xsimd_sse2.hpp(1003,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v1\bsr@3\93707\cefce\s\db8e8e\1\build\src\arrow\arrow_static.vcxproj]
      dictionary.cc
      feather.cc
      message.cc
      metadata_internal.cc
      options.cc
      reader.cc
      writer.cc
    arrow/7.0.0: 
    fatal: not a git repository (or any of the parent directories): .git
    Configured for RELEASE build (set with cmake -DCMAKE_BUILD_TYPE={release,debug,...})
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: boost/1.85.0: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.20.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by thrift/0.20.0 to zlib/1.3.1 
    WARN: libevent/2.1.12: requirement openssl/[>=1.1 <4] overridden by thrift/0.20.0 to openssl/3.3.1 
    boost/1.85.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
    arrow/7.0.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
    arrow/7.0.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
    arrow/7.0.0: ERROR: Package '741088beb4ff6692d4acd6eb57f21ef89216549e' build failed
    arrow/7.0.0: WARN: Build folder C:/J/workspace/prod-v1/bsr@3/93707/cefce/s\db8e8e\1\build
    ERROR: arrow/7.0.0: Error in build() method, line 416
    	cmake.build()
    	ConanException: Error 1 while executing cmake --build "C:/J/workspace/prod-v1/bsr@3/93707/cefce/s\db8e8e\1\build" --config Release
    
  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/11.0.0: 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 (8993c7f2021b09e392826431d17009273928469c):

  • arrow/17.0.0: Didn't run or was cancelled before finishing

  • arrow/16.1.0: Didn't run or was cancelled before finishing

  • arrow/7.0.0: CI failed to create some packages (All logs)

    Logs for packageID 422f86ee51e2933544d619e5ae31975bce6e46e5:
    [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=False
    
    [...]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(983,57): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
      message.cc
      metadata_internal.cc
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(983,1): error C2660: '_mm_cmplt_epi8': function does not take 1 arguments (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(298,16): message : see declaration of '_mm_cmplt_epi8' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(987,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(987,58): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(987,1): error C2660: '_mm_cmplt_epi16': function does not take 1 arguments (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(299,16): message : see declaration of '_mm_cmplt_epi16' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(991,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(991,58): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
      options.cc
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(991,1): error C2660: '_mm_cmplt_epi32': function does not take 1 arguments (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(300,16): message : see declaration of '_mm_cmplt_epi32' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(995,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(995,48): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
      reader.cc
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(996,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'const xsimd::batch<int8_t,xsimd::sse4_2>' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(996,49): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
      writer.cc
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C3536: 'xself': cannot be used before it is initialized (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C3536: 'xother': cannot be used before it is initialized (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(997,1): error C2664: '__m128i _mm_sub_epi64(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(997,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(248,16): message : see declaration of '_mm_sub_epi64' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(998,1): error C2664: '__m128i _mm_xor_si128(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(998,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(261,16): message : see declaration of '_mm_xor_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(999,1): error C2664: '__m128i _mm_andnot_si128(__m128i,__m128i)': cannot convert argument 1 from 'int' to '__m128i' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(999,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\emmintrin.h(259,16): message : see declaration of '_mm_andnot_si128' (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(1003,1): error C2440: 'return': cannot convert from '__m128i' to 'xsimd::batch_bool<T,A>' [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
              with
              [
                  T=int8_t,
                  A=xsimd::sse4_2
              ] (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc)
    C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\xsimd1ca23010ddae9\p\include\xsimd\arch\./xsimd_sse2.hpp(1003,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous (compiling source file C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\src\cpp\src\arrow\compute\kernels\scalar_string_utf8.cc) [C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build\src\arrow\arrow_static.vcxproj]
    
    arrow/7.0.0: ERROR: 
    Package '422f86ee51e2933544d619e5ae31975bce6e46e5' build failed
    arrow/7.0.0: WARN: Build folder C:\J\workspace\prod-v2\bsr@4\84041\fffed\p\b\arrow761cc2de8193d\b\build
    ERROR: arrow/7.0.0: Error in build() method, line 416
    	cmake.build()
    	ConanException: Error 1 while executing
    
  • arrow/15.0.0: Didn't run or was cancelled before finishing

  • arrow/16.0.0: Didn't run or was cancelled before finishing

  • arrow/12.0.1: Didn't run or was cancelled before finishing

  • arrow/14.0.1: Didn't run or was cancelled before finishing

  • arrow/10.0.1: Didn't run or was cancelled before finishing

  • arrow/8.0.1: Didn't run or was cancelled before finishing

  • arrow/13.0.0: Didn't run or was cancelled before finishing

  • arrow/8.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.0: Didn't run or was cancelled before finishing

  • arrow/10.0.0: Didn't run or was cancelled before finishing

  • arrow/14.0.2: Didn't run or was cancelled before finishing

  • arrow/12.0.0: Didn't run or was cancelled before finishing

  • arrow/11.0.0: 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-center-bot avatar Sep 08 '24 01:09 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 21 (17c11e7d64a7945411098c0f3dd3637ddd2a8eda):

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (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 23 (17c11e7d64a7945411098c0f3dd3637ddd2a8eda):

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

conan-center-bot avatar Sep 10 '24 13:09 conan-center-bot

Thanks @perseoGI! CI seems to be green now.

Can you please review this (and also https://github.com/conan-io/conan-center-index/pull/24934, https://github.com/conan-io/conan-center-index/pull/24935, and https://github.com/conan-io/conan-center-index/pull/24936 if appropriate)?

robomics avatar Sep 10 '24 15:09 robomics

Conan v1 pipeline :heavy_check_mark:

All green in build 22 (952d5c9e9a06f06eb1143f000eede64a7419f5f3):

  • arrow/16.1.0: Built 18 packages out of 22 (All logs)

  • arrow/12.0.0: Built 18 packages out of 22 (All logs)

  • arrow/15.0.0: Built 18 packages out of 22 (All logs)

  • arrow/14.0.1: Built 18 packages out of 22 (All logs)

  • arrow/14.0.2: Built 18 packages out of 22 (All logs)

  • arrow/11.0.0: Built 18 packages out of 22 (All logs)

  • arrow/10.0.0: Built 18 packages out of 22 (All logs)

  • arrow/17.0.0: Built 18 packages out of 22 (All logs)

  • arrow/13.0.0: Built 18 packages out of 22 (All logs)

  • arrow/7.0.0: All packages built successfully! (All logs)

  • arrow/16.0.0: Built 18 packages out of 22 (All logs)

  • arrow/12.0.1: Built 18 packages out of 22 (All logs)

  • arrow/10.0.1: Built 18 packages out of 22 (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/14.0.0: Built 18 packages out of 22 (All logs)

  • arrow/8.0.1: All packages built successfully! (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 (952d5c9e9a06f06eb1143f000eede64a7419f5f3):

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/7.0.0: Built 6 packages out of 10 (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

conan-center-bot avatar Sep 15 '24 20:09 conan-center-bot

Thanks @perseoGI! CI seems to be green now.

Can you please review this (and also #24934, #24935, and #24936 if appropriate)?

Could you refresh a lit my memory? Those PRs are pointing to this one but in this PR we are not aiming to bump xsimd

perseoGI avatar Sep 16 '24 14:09 perseoGI

@perseoGI I am bumping xsimd here and in the PRs linked in my other post to address the conflict mentioned in https://github.com/conan-io/conan-center-index/pull/24382#pullrequestreview-2127713015.

robomics avatar Sep 24 '24 17:09 robomics

Conan v1 pipeline :heavy_check_mark:

[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.

All green in build 23 (90ef254773c7a0b541c2a0d93256f3bc1a5240bf):

  • arrow/17.0.0: Built 18 packages out of 22 (All logs)

  • arrow/12.0.0: Built 18 packages out of 22 (All logs)

  • arrow/14.0.2: Built 18 packages out of 22 (All logs)

  • arrow/16.0.0: Built 18 packages out of 22 (All logs)

  • arrow/14.0.0: Built 18 packages out of 22 (All logs)

  • arrow/15.0.0: Built 18 packages out of 22 (All logs)

  • arrow/16.1.0: Built 18 packages out of 22 (All logs)

  • arrow/11.0.0: Built 18 packages out of 22 (All logs)

  • arrow/10.0.1: Built 18 packages out of 22 (All logs)

  • arrow/13.0.0: Built 18 packages out of 22 (All logs)

  • arrow/14.0.1: Built 18 packages out of 22 (All logs)

  • arrow/12.0.1: Built 18 packages out of 22 (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

  • arrow/10.0.0: Built 18 packages out of 22 (All logs)

  • arrow/7.0.0: All packages built successfully! (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 25 (90ef254773c7a0b541c2a0d93256f3bc1a5240bf):

  • arrow/16.1.0: All packages built successfully! (All logs)

  • arrow/16.0.0: All packages built successfully! (All logs)

  • arrow/14.0.2: All packages built successfully! (All logs)

  • arrow/14.0.0: All packages built successfully! (All logs)

  • arrow/7.0.0: Built 6 packages out of 10 (All logs)

  • arrow/12.0.1: All packages built successfully! (All logs)

  • arrow/17.0.0: All packages built successfully! (All logs)

  • arrow/8.0.0: All packages built successfully! (All logs)

  • arrow/14.0.1: All packages built successfully! (All logs)

  • arrow/15.0.0: All packages built successfully! (All logs)

  • arrow/13.0.0: All packages built successfully! (All logs)

  • arrow/12.0.0: All packages built successfully! (All logs)

  • arrow/11.0.0: All packages built successfully! (All logs)

  • arrow/10.0.0: All packages built successfully! (All logs)

  • arrow/10.0.1: All packages built successfully! (All logs)

  • arrow/8.0.1: All packages built successfully! (All logs)

conan-center-bot avatar Oct 03 '24 17:10 conan-center-bot

@perseoGI CI is green! :)

robomics avatar Oct 04 '24 10:10 robomics