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

GH-44127: [CI][R] Fix util_enable_core_dumps.sh path #44128

Merged
merged 2 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading