Skip to content

Commit 67cd34a

Browse files
ARROW-8309: [CI] C++/Java/Rust workflows should trigger on changes to Flight.proto
This also narrows the scope of the triggers on changes to the `ci/` directory (cc @kszucs ) Closes apache#6801 from nealrichardson/flight-ci Authored-by: Neal Richardson <neal.p.richardson@gmail.com> Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>
1 parent 5bdb3af commit 67cd34a

3 files changed

Lines changed: 18 additions & 4 deletions

File tree

.github/workflows/cpp.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ on:
2323
- '.github/workflows/cpp.yml'
2424
- 'ci/**'
2525
- 'cpp/**'
26+
- 'format/Flight.proto'
2627
pull_request:
2728
paths:
2829
- '.github/workflows/cpp.yml'
2930
- 'ci/**'
3031
- 'cpp/**'
32+
- 'format/Flight.proto'
3133

3234
env:
3335
ARROW_ENABLE_TIMING_TESTS: OFF

.github/workflows/java.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,18 @@ on:
2121
push:
2222
paths:
2323
- '.github/workflows/java.yml'
24-
- 'ci/**'
24+
- 'ci/docker/*java*'
25+
- 'ci/scripts/java*.sh'
26+
- 'ci/scripts/util_*.sh'
27+
- 'format/Flight.proto'
2528
- 'java/**'
2629
pull_request:
2730
paths:
2831
- '.github/workflows/java.yml'
29-
- 'ci/**'
32+
- 'ci/docker/*java*'
33+
- 'ci/scripts/java*.sh'
34+
- 'ci/scripts/util_*.sh'
35+
- 'format/Flight.proto'
3036
- 'java/**'
3137

3238
jobs:

.github/workflows/rust.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,19 @@ on:
2121
push:
2222
paths:
2323
- '.github/workflows/rust.yml'
24-
- 'ci/**'
24+
- 'ci/docker/*rust*'
25+
- 'ci/scripts/rust_*.sh'
26+
- 'ci/scripts/util_*.sh'
2527
- 'rust/**'
28+
- 'format/Flight.proto'
2629
pull_request:
2730
paths:
2831
- '.github/workflows/rust.yml'
29-
- 'ci/**'
32+
- 'ci/docker/*rust*'
33+
- 'ci/scripts/rust_*.sh'
34+
- 'ci/scripts/util_*.sh'
3035
- 'rust/**'
36+
- 'format/Flight.proto'
3137

3238
jobs:
3339

0 commit comments

Comments
 (0)