Skip to content

Commit

Permalink
GH-44127: [CI][R] Fix util_enable_core_dumps.sh path (#44128)
Browse files Browse the repository at this point in the history
### Rationale for this change

Checkout directory is `arrow/` not `./`.

### What changes are included in this PR?

Add missing `arrow/` prefix.

### Are these changes tested?

Yes.

### Are there any user-facing changes?

No.
* GitHub Issue: #44127

Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
  • Loading branch information
kou authored Sep 16, 2024
1 parent aa6ab95 commit c3a0bd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dev/tasks/macros.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -320,15 +320,15 @@ env:
run: mkdir repo
{% if get_win %}
- name: Get windows binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__windows
path: repo/libarrow/bin/windows
{% endif %}
{% if get_nix %}
{% for openssl_version in ["1.0", "1.1", "3.0"] %}
- name: Get Linux OpenSSL {{ openssl_version }} binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__linux-openssl-{{ openssl_version }}
path: repo/libarrow/bin/linux-openssl-{{ openssl_version }}
Expand All @@ -338,15 +338,15 @@ env:
{% for openssl_version in ["1.1", "3.0"] %}
{% for arch in ["x86_64", "arm64"] %}
- name: Get macOS {{ arch }} OpenSSL {{ openssl_version }} binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-lib__libarrow__bin__darwin-{{arch}}-openssl-{{ openssl_version }}
path: repo/libarrow/bin/darwin-{{ arch }}-openssl-{{ openssl_version }}
{% endfor %}
{% endfor %}
{% endif %}
- name: Get src pkg
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: r-pkg__src__contrib
path: repo/src/contrib
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/r/github.packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
UBUNTU: {{ '"${{ matrix.ubuntu }}"' }}
{{ macros.github_set_sccache_envvars()|indent(8) }}
run: |
source ci/scripts/util_enable_core_dumps.sh
source arrow/ci/scripts/util_enable_core_dumps.sh
archery docker run \
-e EXTRA_CMAKE_FLAGS="{{ '${{ matrix.extra-cmake-flags }}' }}" \
{{ '${{ matrix.os }}' }}-cpp-static
Expand Down

0 comments on commit c3a0bd2

Please sign in to comment.