Details

    • New Feature
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • N/A
    • N/A
    • Buildbot
    • None

    Description

      Required to test MDEV-30432 on Windows.

      See https://github.com/MariaDB/server/pull/2996

      Attachments

        Issue Links

          Activity

            Direct link for libcurl for W64 here

            anel Anel Husakovic added a comment - Direct link for libcurl for W64 here
            danblack Daniel Black added a comment -

            Installed,

            not detected.

            Was this a chocolatey install? Can a CMakeOutput.txt/CMakeError.txt be saved from the build to work out its lack of detection.

            https://gitlab.kitware.com/cmake/cmake/-/blob/master/Modules/FindCURL.cmake

            danblack Daniel Black added a comment - Installed, not detected . Was this a chocolatey install ? Can a CMakeOutput.txt/CMakeError.txt be saved from the build to work out its lack of detection. https://gitlab.kitware.com/cmake/cmake/-/blob/master/Modules/FindCURL.cmake
            vladbogo Vlad Bogolin added a comment - - edited

            Curl was installed using choco but libcurl was missing. I have now installed from Anel’s link manually a new version that comes with libcurl for the amd64-windows-packages builder. Not sure if there is any additional env var that needs to be set though.

            vladbogo Vlad Bogolin added a comment - - edited Curl was installed using choco but libcurl was missing. I have now installed from Anel’s link manually a new version that comes with libcurl for the amd64-windows-packages builder. Not sure if there is any additional env var that needs to be set though.
            anel Anel Husakovic added a comment - - edited

            I have tested built successfully on windows builder with libcurl by explicitly defining CURL_LIBRARY and CURL_INCLUDE_DIR, using following command:

            # Load env varibles
            >> "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64
            >> cmake ../server -A x64 -DPLUGIN_ROCKSDB=NO -DPLUGIN_HASHICORP_KEY_MANAGEMENT=NO -DMYSQL_MAINTAINER_MODE=ERR -Wno-dev -DCURL_LIBRARY=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a -DCURL_INCLUDE_DIR=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/include
            -- Found CURL: C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a (found version "7.85.0")
             
            The following features have been enabled:
             * CONNECT_REST, Support for REST API in the CONNECT storage engine
             
            >> # Only building connect module 
             
            >> cmake --build . --verbose --config Debug --target connect -- -m
            

            Library libcurl is properly linked dynamically

            >> dumpbin /dependents storage\connect\Debug\ha_connect.dll
            Microsoft (R) COFF/PE Dumper Version 14.33.31630.0
            Copyright (C) Microsoft Corporation.  All rights reserved.
             
             
            Dump of file storage\connect\Debug\ha_connect.dll
             
            File Type: DLL
             
              Image has the following dependencies:
             
                ODBC32.dll
                IPHLPAPI.DLL
                libcurl-x64.dll
                server.dll
                KERNEL32.dll
                USER32.dll
                ole32.dll
                OLEAUT32.dll
                ADVAPI32.dll
                WS2_32.dll
                api-ms-win-crt-string-l1-1-0.dll
                api-ms-win-crt-runtime-l1-1-0.dll
                api-ms-win-crt-math-l1-1-0.dll
                api-ms-win-crt-convert-l1-1-0.dll
                api-ms-win-crt-stdio-l1-1-0.dll
                api-ms-win-crt-filesystem-l1-1-0.dll
                api-ms-win-crt-time-l1-1-0.dll
                api-ms-win-crt-heap-l1-1-0.dll
                api-ms-win-crt-environment-l1-1-0.dll
                api-ms-win-crt-locale-l1-1-0.dll
                api-ms-win-crt-utility-l1-1-0.dll
             
              Summary
             
                    1000 .00cfg
                    A000 .data
                    6000 .idata
                   1A000 .pdata
                   DB000 .rdata
                    9000 .reloc
                    1000 .rsrc
                  230000 .text
                    1000 _RDATA
            

            The test is now failing

             
            worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
            connect.rest                             w1 [ fail ]
                    Test ended at 2024-02-07 13:32:55
             
            CURRENT_TEST: connect.rest
            

            The problem that now exists is that PATH variable should be set.

            vladbogo can you please add the cmake variables to windows builders and append to env PATH variable C:\ProgramData\chocolatey\lib\curl\tools\curl-7.85.0-win64-mingw\bin ?

            anel Anel Husakovic added a comment - - edited I have tested built successfully on windows builder with libcurl by explicitly defining CURL_LIBRARY and CURL_INCLUDE_DIR , using following command: # Load env varibles >> "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 >> cmake ../server -A x64 -DPLUGIN_ROCKSDB=NO -DPLUGIN_HASHICORP_KEY_MANAGEMENT=NO -DMYSQL_MAINTAINER_MODE=ERR -Wno-dev -DCURL_LIBRARY=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a -DCURL_INCLUDE_DIR=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/include -- Found CURL: C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a (found version "7.85.0")   The following features have been enabled: * CONNECT_REST, Support for REST API in the CONNECT storage engine   >> # Only building connect module   >> cmake --build . --verbose --config Debug --target connect -- -m Library libcurl is properly linked dynamically >> dumpbin /dependents storage\connect\Debug\ha_connect.dll Microsoft (R) COFF/PE Dumper Version 14.33.31630.0 Copyright (C) Microsoft Corporation. All rights reserved.     Dump of file storage\connect\Debug\ha_connect.dll   File Type: DLL   Image has the following dependencies:   ODBC32.dll IPHLPAPI.DLL libcurl-x64.dll server.dll KERNEL32.dll USER32.dll ole32.dll OLEAUT32.dll ADVAPI32.dll WS2_32.dll api-ms-win-crt-string-l1-1-0.dll api-ms-win-crt-runtime-l1-1-0.dll api-ms-win-crt-math-l1-1-0.dll api-ms-win-crt-convert-l1-1-0.dll api-ms-win-crt-stdio-l1-1-0.dll api-ms-win-crt-filesystem-l1-1-0.dll api-ms-win-crt-time-l1-1-0.dll api-ms-win-crt-heap-l1-1-0.dll api-ms-win-crt-environment-l1-1-0.dll api-ms-win-crt-locale-l1-1-0.dll api-ms-win-crt-utility-l1-1-0.dll   Summary   1000 .00cfg A000 .data 6000 .idata 1A000 .pdata DB000 .rdata 9000 .reloc 1000 .rsrc 230000 .text 1000 _RDATA The test is now failing   worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created. connect.rest w1 [ fail ] Test ended at 2024-02-07 13:32:55   CURRENT_TEST: connect.rest The problem that now exists is that PATH variable should be set. vladbogo can you please add the cmake variables to windows builders and append to env PATH variable C:\ProgramData\chocolatey\lib\curl\tools\curl-7.85.0-win64-mingw\bin ?

            After installing vcpkg and adding -DCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/vcpkg/scripts/buildsystems/vcpkg.cmake, cmake's find_package() works - libcurl is found, but we still get the error in the test:

            worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
            connect.rest                             w1 [ fail ]
            

            After checking the linked library we can find:

            >> dumpbin /dependents storage\connect\Debug\ha_connect.dll
             
            File Type: DLL
              Image has the following dependencies:
                libcurl-d.dll
            

            After testing locally (building the binaries in bld directory) it can found following paths of library .dll

            C:\vcpkg\installed\x64-windows\debug\bin
            C:\vcpkg\packages\curl_x64-windows\debug\bin
            C:\Users\Administrator\Desktop\anel\bld\storage\connect\Debug
            C:\Users\Administrator\Desktop\anel\bld\mysql-test\var\plugins
            

            After adding the C:\vcpkg\packages\curl_x64-windows\debug\bin to PATH still test didn't work and failed with the same error.
            After adding the C:\vcpkg\installed\x64-windows\debug\bin to PATH it worked (very likely because cur has a bunch of dependencies itself).

            With this change on Windows test works:

            connect.rest                             w1 [ pass ]    328
            

            Connect suite is also tested and it worked.

            Completed: All 59 tests were successful.
             
            15 tests were skipped, 15 by the test itself.
            

            anel Anel Husakovic added a comment - After installing vcpkg and adding -DCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/vcpkg/scripts/buildsystems/vcpkg.cmake , cmake 's find_package() works - libcurl is found, but we still get the error in the test: worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created. connect.rest w1 [ fail ] After checking the linked library we can find: >> dumpbin /dependents storage\connect\Debug\ha_connect.dll   File Type: DLL Image has the following dependencies: libcurl-d.dll After testing locally (building the binaries in bld directory) it can found following paths of library .dll C:\vcpkg\installed\x64-windows\debug\bin C:\vcpkg\packages\curl_x64-windows\debug\bin C:\Users\Administrator\Desktop\anel\bld\storage\connect\Debug C:\Users\Administrator\Desktop\anel\bld\mysql-test\var\plugins After adding the C:\vcpkg\packages\curl_x64-windows\debug\bin to PATH still test didn't work and failed with the same error. After adding the C:\vcpkg\installed\x64-windows\debug\bin to PATH it worked (very likely because cur has a bunch of dependencies itself). With this change on Windows test works: connect.rest w1 [ pass ] 328 Connect suite is also tested and it worked. Completed: All 59 tests were successful.   15 tests were skipped, 15 by the test itself.

            People

              anel Anel Husakovic
              danblack Daniel Black
              Votes:
              1 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: