You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by vi...@apache.org on 2022/07/23 23:35:13 UTC

[arrow-rs] branch master updated: Only run integration tests when arrow changes (#2152)

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

viirya 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 7746e7dd4 Only run integration tests when arrow changes (#2152)
7746e7dd4 is described below

commit 7746e7dd4eb2be66bc6aa84b9dcebd2a76036d00
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Sat Jul 23 19:35:09 2022 -0400

    Only run integration tests when arrow changes (#2152)
---
 .github/workflows/integration.yml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index 7eed6b8e9..88f41023a 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -17,14 +17,21 @@
 
 name: Integration
 
+# Only run when arrow or github changes
 on:
   push:
+    paths:
+      - arrow/**
+      - .github/**
   pull_request:
+    paths:
+      - arrow/**
+      - .github/**
 
 jobs:
 
   integration:
-    name: Integration Test
+    name: Archery test With other arrows
     runs-on: ubuntu-latest
     steps:
       - name: Checkout Arrow
@@ -49,7 +56,7 @@ jobs:
 
   # test FFI against the C-Data interface exposed by pyarrow
   pyarrow-integration-test:
-    name: Test Pyarrow C Data Interface
+    name: Pyarrow C Data Interface
     runs-on: ubuntu-latest
     strategy:
       matrix: