kou commented on code in PR #35471:
URL: https://github.com/apache/arrow/pull/35471#discussion_r1189255233


##########
.github/workflows/cpp.yml:
##########
@@ -57,11 +57,19 @@ jobs:
     name: ${{ matrix.title }}
     runs-on: ${{ matrix.runs-on }}
     if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
-    timeout-minutes: 75
+    timeout-minutes: 120
     strategy:
       fail-fast: false
       matrix:
         include:
+          - arch: amd64
+            clang-tools: "14"
+            image: ubuntu-cpp
+            llvm: "14"
+            runs-on: ubuntu-latest
+            title: AMD64 ubuntu-cpp no threads
+            ubuntu: "22.04"
+            enable_threading: "OFF"

Review Comment:
   The following change will work:
   
   ```diff
   diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
   index 6d07c65b4..103c11acc 100644
   --- a/dev/tasks/tasks.yml
   +++ b/dev/tasks/tasks.yml
   @@ -1162,6 +1162,15 @@ tasks:
          image: ubuntu-cpp
    {% endfor %}
    
   +  test-ubuntu-22.04-cpp-no-threading:
   +    ci: github
   +    template: docker-tests/github.linux.yml
   +    params:
   +      env:
   +        UBUNTU: 22.04
   +      flags: "-e ARROW_ENABLE_THREADING=OFF"
   +      image: ubuntu-cpp
   +
      test-ubuntu-20.04-cpp-thread-sanitizer:
        ci: github
        template: docker-tests/github.linux.yml
   ```
   
   You can run the job by commenting `@github-actions crossbow submit 
test-ubuntu-22.04-cpp-no-threading` in a PR.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to