This is an automated email from the ASF dual-hosted git repository.

quinnj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git


The following commit(s) were added to refs/heads/main by this push:
     new e893c32  Run with 1 and 2 threads during tests (#431)
e893c32 is described below

commit e893c327f177f5a4d5efeab831df0fe93ab4ec5b
Author: Jacob Quinn <[email protected]>
AuthorDate: Sun Apr 23 15:31:36 2023 -0600

    Run with 1 and 2 threads during tests (#431)
---
 .github/workflows/ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c2206a3..f3b2a9b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -61,7 +61,7 @@ jobs:
                           -e 's/"$//g')
           VERIFY_DEFAULT=0 dev/release/verify_rc.sh ${version} 100
   test:
-    name: ${{ matrix.pkg.name }} - Julia ${{ matrix.version }} - ${{ matrix.os 
}} - ${{ matrix.arch }} - ${{ github.event_name }}
+    name: ${{ matrix.pkg.name }} - Julia ${{ matrix.version }} - ${{ matrix.os 
}} - ${{ matrix.arch }} - ${{ matrix.nthreads }} threads - ${{ 
github.event_name }}
     runs-on: ${{ matrix.os }}
     strategy:
       fail-fast: false
@@ -79,6 +79,7 @@ jobs:
           - ubuntu-latest
         arch:
           - x64
+        nthreads: [1, 2]
     steps:
       - uses: actions/checkout@v2
       - uses: julia-actions/setup-julia@v1
@@ -99,6 +100,8 @@ jobs:
         with:
           project: ${{ matrix.pkg.dir }}
       - uses: julia-actions/julia-runtest@v1
+        env:
+          JULIA_NUM_THREADS: ${{ matrix.nthreads }}
         with:
           project: ${{ matrix.pkg.dir }}
       - uses: julia-actions/julia-processcoverage@v1

Reply via email to