Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Dummy PR to check maint-18.0.0 status #44367

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
c8a0a69
GH-44358: [Packaging][Debian] Add workaround for CUDA include path (#…
kou Oct 9, 2024
774495c
GH-44347: [Packaging][C++] Enable Azure file system for deb/rpm (#44348)
kou Oct 10, 2024
7d5efe5
GH-44355: [Packaging][Python] Disable interactive deb configuration i…
kou Oct 10, 2024
e15bbe6
GH-43846: [Python][Packaging] Remove numpy dependency from pyarrow pa…
raulcd Oct 10, 2024
7d4272e
GH-43519: [Python][CI][Packaging] Use released versions to build and …
jorisvandenbossche Oct 10, 2024
037485f
GH-44369: [CI][Python] Remove ds requirement from test collection on …
raulcd Oct 11, 2024
bc71843
GH-44314: [Packaging][Python] Use macOS 12 as deployment target to ha…
raulcd Oct 11, 2024
a39090d
GH-44373: [Packaging][Java] Fix brew link to Python 3.13 on macOS (#4…
raulcd Oct 11, 2024
71bd117
GH-43519: [Python][CI] Add Python 3.13 conda test build (#44192)
jorisvandenbossche Oct 11, 2024
9812ab7
GH-44381: [Ruby][Release] Pin not only glib but also python on verifi…
raulcd Oct 12, 2024
0e184c3
GH-44386: [Integration][Release] Pin Python 3.12 for Integration veri…
raulcd Oct 12, 2024
155a42e
GH-44342: [C++] Disable jemalloc by default on ARM (#44380)
kou Oct 14, 2024
70a2245
GH-44415: [Release][Ruby] Remove pins from glib section of release ve…
amoeba Oct 15, 2024
5d7987b
GH-44422: [Packaging][Release][Linux] Upload artifacts before test (#…
kou Oct 16, 2024
8567163
MINOR: [Release] Update CHANGELOG.md for 18.0.0
raulcd Oct 16, 2024
e47bf46
MINOR: [Release] Update .deb/.rpm changelogs for 18.0.0
raulcd Oct 16, 2024
9105a41
MINOR: [Release] Update versions for 18.0.0
raulcd Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
GH-44422: [Packaging][Release][Linux] Upload artifacts before test (#…
…44425)

### Rationale for this change

It seems that the current `quay.io/centos/centos:stream9` for `linux/aarch64` is broken.

We use it for building and testing but testing is only broken for now. Because we use cached (a bit old) `quay.io/centos/centos:stream9` for now. Building will be failed when the cache is expired.

### What changes are included in this PR?

Change upload phase to after the build from after the test. Test is still failing but we can proceed our release process by this.

### Are these changes tested?

Yes.

### Are there any user-facing changes?

No.
* GitHub Issue: #44422

Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
kou authored and raulcd committed Oct 16, 2024
commit 5d7987b94a4389e098461ae013522a64eb2fe6fe
7 changes: 4 additions & 3 deletions dev/tasks/linux-packages/github.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ jobs:
APT_TARGETS: {{ target }}
REPO: {{ '${{ secrets.REPO }}' }}
YUM_TARGETS: {{ target }}

{% set patterns = upload_extensions | format_all("arrow/dev/tasks/linux-packages/*/*/repositories/**/*{}") %}
{{ macros.github_upload_releases(patterns)|indent }}

- name: Set up test
run: |
sudo apt install -y \
Expand Down Expand Up @@ -123,6 +127,3 @@ jobs:
APT_TARGETS: {{ target }}
ARROW_VERSION: {{ arrow.version }}
YUM_TARGETS: {{ target }}

{% set patterns = upload_extensions | format_all("arrow/dev/tasks/linux-packages/*/*/repositories/**/*{}") %}
{{ macros.github_upload_releases(patterns)|indent }}
Loading