Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. How to disable ds-populate task
Forum Updated to NodeBB v4.3 + New Features

How to disable ds-populate task

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
4 Posts 3 Posters 489 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    Riguz Lee
    wrote on 6 Sept 2023, 03:06 last edited by
    #1

    Hi there,
    I got network issue and cannot load qt project, it seems that there's a step called ds-populate that will try to fetch something from a git repo. It's fetching everytime I open the project and took long time and finally failed, and thus not able to run either, I'm wondering if it's possible to disable it?

    Here's the log:

    [0/7] Performing update step for 'ds-populate'
    fatal: unable to access 'https://code.qt.io/qt-labs/qtquickdesigner-components.git/': Recv failure: Connection reset by peer
    CMake Error at /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake:97 (execute_process):
      execute_process failed command indexes:
    
        1: "Child return code: 128"
    
    
    
    FAILED: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update 
    cd /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-src && /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/bin/cmake -P /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake
    ninja: build stopped: subcommand failed.
    
    CMake Error at /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1604 (message):
      Build step for ds failed: 1
    Call Stack (most recent call first):
      /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1744:EVAL:2 (__FetchContent_directPopulate)
      /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1744 (cmake_language)
      qmlcomponents:16 (FetchContent_Populate)
      CMakeLists.txt:32 (include)
    
    
    -- Configuring incomplete, errors occurred!
    See also "/Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/CMakeFiles/CMakeOutput.log".
    CMake process exited with exit code 1.
    
    Elapsed time: 02:01.
    
    
    
    J 1 Reply Last reply 6 Sept 2023, 05:20
    1
    • R Riguz Lee
      6 Sept 2023, 03:06

      Hi there,
      I got network issue and cannot load qt project, it seems that there's a step called ds-populate that will try to fetch something from a git repo. It's fetching everytime I open the project and took long time and finally failed, and thus not able to run either, I'm wondering if it's possible to disable it?

      Here's the log:

      [0/7] Performing update step for 'ds-populate'
      fatal: unable to access 'https://code.qt.io/qt-labs/qtquickdesigner-components.git/': Recv failure: Connection reset by peer
      CMake Error at /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake:97 (execute_process):
        execute_process failed command indexes:
      
          1: "Child return code: 128"
      
      
      
      FAILED: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update 
      cd /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-src && /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/bin/cmake -P /Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake
      ninja: build stopped: subcommand failed.
      
      CMake Error at /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1604 (message):
        Build step for ds failed: 1
      Call Stack (most recent call first):
        /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1744:EVAL:2 (__FetchContent_directPopulate)
        /Users/riguz/Qt/Tools/CMake/CMake.app/Contents/share/cmake-3.24/Modules/FetchContent.cmake:1744 (cmake_language)
        qmlcomponents:16 (FetchContent_Populate)
        CMakeLists.txt:32 (include)
      
      
      -- Configuring incomplete, errors occurred!
      See also "/Users/riguz/Documents/workspace/build-TextLoud-Qt_6_5_2_for_macOS-Debug/CMakeFiles/CMakeOutput.log".
      CMake process exited with exit code 1.
      
      Elapsed time: 02:01.
      
      
      
      J Offline
      J Offline
      JKSH
      Moderators
      wrote on 6 Sept 2023, 05:20 last edited by
      #2

      Hi, and welcome!

      @Riguz-Lee said in How to disable ds-populate task:

      I got network issue and cannot load qt project, it seems that there's a step called ds-populate that will try to fetch something from a git repo. It's fetching everytime I open the project and took long time and finally failed, and thus not able to run either, I'm wondering if it's possible to disable it?

      Look in your top-level CMakeLists.txt for a variable called BUILD_QDS_COMPONENTS. Change it from ON to OFF.

      See also https://bugreports.qt.io/browse/QDS-9623

      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

      R 1 Reply Last reply 6 Sept 2023, 06:48
      1
      • J JKSH
        6 Sept 2023, 05:20

        Hi, and welcome!

        @Riguz-Lee said in How to disable ds-populate task:

        I got network issue and cannot load qt project, it seems that there's a step called ds-populate that will try to fetch something from a git repo. It's fetching everytime I open the project and took long time and finally failed, and thus not able to run either, I'm wondering if it's possible to disable it?

        Look in your top-level CMakeLists.txt for a variable called BUILD_QDS_COMPONENTS. Change it from ON to OFF.

        See also https://bugreports.qt.io/browse/QDS-9623

        R Offline
        R Offline
        Riguz Lee
        wrote on 6 Sept 2023, 06:48 last edited by
        #3

        @JKSH said in How to disable ds-populate task:

        BUILD_QDS_COMPONENTS

        Thanks for reply, I tried but does not work:6dee2fda-69a3-4e2e-b8af-d0a444ddd624-image.png

        J 1 Reply Last reply 6 Sept 2023, 08:43
        1
        • R Riguz Lee
          6 Sept 2023, 06:48

          @JKSH said in How to disable ds-populate task:

          BUILD_QDS_COMPONENTS

          Thanks for reply, I tried but does not work:6dee2fda-69a3-4e2e-b8af-d0a444ddd624-image.png

          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 6 Sept 2023, 08:43 last edited by
          #4

          @Riguz-Lee Did you try to delete build folder to start the build from scratch?

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0

          1/4

          6 Sept 2023, 03:06

          • Login

          • Login or register to search.
          1 out of 4
          • First post
            1/4
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved