Skip to content

Commit d850c50

Browse files
resolve merge conflicts
2 parents cc30058 + 7129321 commit d850c50

File tree

610 files changed

+3721
-55751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

610 files changed

+3721
-55751
lines changed

.clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ ColumnLimit: 90
2020
DerivePointerAlignment: false
2121
IncludeBlocks: Preserve
2222
IndentPPDirectives: AfterHash
23+
QualifierAlignment: Left

.github/CODEOWNERS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@
3333
/cpp/src/arrow/engine @westonpace
3434
/cpp/src/arrow/flight/ @lidavidm
3535
/cpp/src/parquet @wgtmac
36-
/csharp/ @curthagenlocher
3736
/matlab/ @kevingurney @kou @sgilmore10
38-
/python/ @AlenkaF @raulcd @rok
37+
/python/ @AlenkaF @raulcd @rok
3938
/python/pyarrow/_flight.pyx @lidavidm
4039
/python/pyarrow/**/*gandiva* @wjones127
4140
/r/ @jonkeane @thisisnic

.github/dependabot.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -24,34 +24,3 @@ updates:
2424
commit-message:
2525
prefix: "MINOR: [CI] "
2626
open-pull-requests-limit: 10
27-
- package-ecosystem: "gomod"
28-
directory: "/swift/CDataWGo/"
29-
schedule:
30-
interval: "weekly"
31-
commit-message:
32-
prefix: "MINOR: [Swift] "
33-
open-pull-requests-limit: 10
34-
- package-ecosystem: "gomod"
35-
directory: "/swift/data-generator/swift-datagen/"
36-
schedule:
37-
interval: "weekly"
38-
commit-message:
39-
prefix: "MINOR: [Swift] "
40-
open-pull-requests-limit: 10
41-
- package-ecosystem: "nuget"
42-
directory: "/csharp/"
43-
schedule:
44-
interval: "weekly"
45-
commit-message:
46-
prefix: "MINOR: [C#] "
47-
open-pull-requests-limit: 10
48-
ignore:
49-
- dependency-name: "Microsoft.Extensions.*"
50-
update-types:
51-
- "version-update:semver-major"
52-
- dependency-name: "Microsoft.Bcl.*"
53-
update-types:
54-
- "version-update:semver-major"
55-
- dependency-name: "System.*"
56-
update-types:
57-
- "version-update:semver-major"

.github/workflows/cpp_extra.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,60 @@ jobs:
278278
cmake --build cpp/examples/minimal_build.build
279279
cd cpp/examples/minimal_build
280280
../minimal_build.build/arrow-example
281+
282+
report-extra-cpp:
283+
runs-on: ubuntu-latest
284+
needs:
285+
- docker
286+
- jni-macos
287+
# We don't have the job id as part of the context neither the job name.
288+
# The GitHub API exposes numeric id or job name but not the github.job (report-extra-cpp).
289+
# We match github.job to the name so we can pass it via context in order to be ignored on the report.
290+
# The job is still running.
291+
name: ${{ github.job }}
292+
if: github.event_name == 'schedule' && always()
293+
steps:
294+
- name: Checkout Arrow
295+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
296+
with:
297+
fetch-depth: 0
298+
- name: Setup Python
299+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
300+
with:
301+
python-version: 3
302+
- name: Setup Archery
303+
run: python3 -m pip install -e dev/archery[crossbow]
304+
- name: Prepare common options
305+
run: |
306+
if [ "${GITHUB_REPOSITORY}" = "apache/arrow" ]; then
307+
echo "COMMON_OPTIONS=--send" >> "${GITHUB_ENV}"
308+
else
309+
echo "COMMON_OPTIONS=--dry-run" >> "${GITHUB_ENV}"
310+
fi
311+
- name: Send email
312+
env:
313+
GH_TOKEN: ${{ github.token }}
314+
SMTP_PASSWORD: ${{ secrets.ARROW_SMTP_PASSWORD }}
315+
run: |
316+
archery ci report-email \
317+
--ignore ${{ github.job }} \
318+
--recipient-email '[email protected]' \
319+
--repository ${{ github.repository }} \
320+
--sender-email '[email protected]' \
321+
--sender-name Arrow \
322+
--smtp-port 587 \
323+
--smtp-server 'commit-email.info' \
324+
--smtp-user arrow \
325+
${COMMON_OPTIONS} \
326+
${{ github.run_id }}
327+
- name: Send chat message
328+
if: always()
329+
env:
330+
GH_TOKEN: ${{ github.token }}
331+
CHAT_WEBHOOK: ${{ secrets.ARROW_ZULIP_WEBHOOK }}
332+
run: |
333+
archery ci report-chat \
334+
--ignore ${{ github.job }} \
335+
--repository ${{ github.repository }} \
336+
${COMMON_OPTIONS} \
337+
${{ github.run_id }}

.github/workflows/csharp.yml

Lines changed: 0 additions & 212 deletions
This file was deleted.

.github/workflows/dev_pr/labeler.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@
2525
- any-glob-to-any-file:
2626
- c_glib/**/*
2727

28-
"Component: C#":
29-
- changed-files:
30-
- any-glob-to-any-file:
31-
- csharp/**/*
32-
3328
"Component: MATLAB":
3429
- changed-files:
3530
- any-glob-to-any-file:

.github/workflows/integration.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ on:
3232
- 'docker-compose.yml'
3333
- 'integration/**'
3434
- 'cpp/**'
35-
- 'csharp/**'
3635
- 'format/**'
3736
pull_request:
3837
paths:
@@ -43,7 +42,6 @@ on:
4342
- 'docker-compose.yml'
4443
- 'integration/**'
4544
- 'cpp/**'
46-
- 'csharp/**'
4745
- 'format/**'
4846

4947
concurrency:

0 commit comments

Comments
 (0)