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

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 70bcfbcfa Update arrow CI for split crates (#2594) (#2778)
70bcfbcfa is described below

commit 70bcfbcfaab2513f36c39b32427ca812e8e201e4
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Tue Sep 27 15:07:47 2022 +0100

    Update arrow CI for split crates (#2594) (#2778)
    
    * Update arrow CI for split crates (#2594)
    
    * Update more
---
 .github/workflows/arrow.yml        | 21 +++++++++++++++------
 .github/workflows/arrow_flight.yml |  4 ++++
 .github/workflows/integration.yml  |  4 ++++
 .github/workflows/miri.yaml        |  4 ++++
 .github/workflows/parquet.yml      |  4 ++++
 5 files changed, 31 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/arrow.yml b/.github/workflows/arrow.yml
index 797f63b5a..466f0b12e 100644
--- a/.github/workflows/arrow.yml
+++ b/.github/workflows/arrow.yml
@@ -26,6 +26,10 @@ on:
   pull_request:
     paths:
       - arrow/**
+      - arrow-array/**
+      - arrow-buffer/**
+      - arrow-data/**
+      - arrow-schema/**
       - .github/**
 
 jobs:
@@ -48,9 +52,16 @@ jobs:
         uses: ./.github/actions/setup-builder
         with:
           rust-version: stable
-      - name: Test
-        run: |
-          cargo test -p arrow
+      - name: Test arrow-buffer with all features
+        run: cargo test -p arrow-buffer --all-features
+      - name: Test arrow-data with all features
+        run: cargo test -p arrow-data --all-features
+      - name: Test arrow-schema with all features
+        run: cargo test -p arrow-schema --all-features
+      - name: Test arrow-array with all features
+        run: cargo test -p arrow-array --all-features
+      - name: Test arrow
+        run: cargo test -p arrow
       - name: Test 
--features=force_validate,prettyprint,ipc_compression,ffi,dyn_cmp_dict,dyn_arith_dict
         run: |
           cargo test -p arrow 
--features=force_validate,prettyprint,ipc_compression,ffi,dyn_cmp_dict,dyn_arith_dict
@@ -63,10 +74,8 @@ jobs:
           cargo run --example read_csv_infer_schema
       - name: Run non-archery based integration-tests
         run: cargo test -p arrow-integration-testing
-      - name: Test arrow-schema with all features
-        run: cargo test -p arrow-schema --all-features
 
-  # test compilaton features
+  # test compilation features
   linux-features:
     name: Check Compilation
     runs-on: ubuntu-latest
diff --git a/.github/workflows/arrow_flight.yml 
b/.github/workflows/arrow_flight.yml
index 86a67ff9a..3e785f056 100644
--- a/.github/workflows/arrow_flight.yml
+++ b/.github/workflows/arrow_flight.yml
@@ -28,6 +28,10 @@ on:
   pull_request:
     paths:
       - arrow/**
+      - arrow-array/**
+      - arrow-buffer/**
+      - arrow-data/**
+      - arrow-schema/**
       - arrow-flight/**
       - .github/**
 
diff --git a/.github/workflows/integration.yml 
b/.github/workflows/integration.yml
index d78f02c95..0f183990e 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -25,6 +25,10 @@ on:
   pull_request:
     paths:
       - arrow/**
+      - arrow-array/**
+      - arrow-buffer/**
+      - arrow-data/**
+      - arrow-schema/**
       - arrow-pyarrow-integration-testing/**
       - integration-testing/**
       - .github/**
diff --git a/.github/workflows/miri.yaml b/.github/workflows/miri.yaml
index b4669bbcc..bb75fcbbb 100644
--- a/.github/workflows/miri.yaml
+++ b/.github/workflows/miri.yaml
@@ -25,6 +25,10 @@ on:
   pull_request:
     paths:
       - arrow/**
+      - arrow-array/**
+      - arrow-buffer/**
+      - arrow-data/**
+      - arrow-schema/**
       - .github/**
 
 jobs:
diff --git a/.github/workflows/parquet.yml b/.github/workflows/parquet.yml
index 8497db798..0d5dc63a7 100644
--- a/.github/workflows/parquet.yml
+++ b/.github/workflows/parquet.yml
@@ -28,6 +28,10 @@ on:
   pull_request:
     paths:
       - arrow/**
+      - arrow-array/**
+      - arrow-buffer/**
+      - arrow-data/**
+      - arrow-schema/**
       - parquet/**
       - .github/**
 

Reply via email to