-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-11460: [R] Use system libraries if present on Linux #10710
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
Changes from all commits
deb0c72
9321021
c6c3dea
b4a1b16
3bdd22f
29d43ac
34349b8
e191f92
65bd169
933113b
fb2c199
1a6b4ea
894b428
2245842
af0a681
1de55e0
6e83b5d
fe7c6c4
f4dbe36
e1d4edc
e5e8262
a5091bd
4dd959f
4753b48
a3f291f
5fde64a
66fc156
cd6ffe1
fdd3f2a
2c51df3
7c526bd
4b4e665
fb6d77f
b74d5b8
861c03f
afac895
d4259ca
20bed92
b30b74d
68dcb1b
00e4611
9cd8f00
77a3d57
8775d48
3325981
e116151
659dd69
dd78fd1
ba87c9e
c3ea16b
ab1d149
593b930
956b3d6
acb276b
2593146
4765f8e
2533871
3ef25a4
39156ee
9e2c3e2
27baa42
e841f80
a3b0f18
13b6b6b
bcba8ba
ec61d2d
d2f6d1a
2cf3a26
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,10 +41,11 @@ jobs: | |
| shell: bash | ||
| run: archery docker run -e SETUPTOOLS_SCM_PRETEND_VERSION="{{ arrow.no_rc_version }}" {{ flags|default("") }} {{ image }} {{ command|default("") }} | ||
|
|
||
| {% if '-r-' in image %} | ||
| {% if '-r' in image %} | ||
|
||
| - name: Dump R install logs | ||
| run: cat arrow/r/check/arrow.Rcheck/00install.out | ||
| continue-on-error: true | ||
jonkeane marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| if: always() | ||
| {% endif %} | ||
|
|
||
| {% if arrow.branch == 'master' %} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1013,6 +1013,26 @@ tasks: | |
| test-r-devdocs: | ||
| ci: github | ||
| template: r/github.devdocs.yml | ||
|
|
||
| test-r-depsource-auto: | ||
| ci: azure | ||
| template: r/azure.linux.yml | ||
| params: | ||
| r_org: rocker | ||
| r_image: r-base | ||
| r_tag: latest | ||
| flags: '-e ARROW_DEPENDENCY_SOURCE=AUTO' | ||
|
||
|
|
||
| test-r-depsource-system: | ||
| ci: github | ||
| template: docker-tests/github.linux.yml | ||
| params: | ||
| env: | ||
| UBUNTU: 21.04 | ||
| CLANG_TOOLS: 9 # can remove this when >=9 is the default | ||
| flags: '-e ARROW_SOURCE_HOME="/arrow" -e FORCE_BUNDLED_BUILD=TRUE -e LIBARROW_BUILD=TRUE -e ARROW_DEPENDENCY_SOURCE=SYSTEM' | ||
| image: ubuntu-r-only-r | ||
|
|
||
|
|
||
| {% for r_org, r_image, r_tag in [("rhub", "ubuntu-gcc-release", "latest"), | ||
| ("rocker", "r-base", "latest"), | ||
|
|
@@ -1050,7 +1070,7 @@ tasks: | |
| UBUNTU: 21.04 | ||
| CLANG_TOOLS: 9 # can remove this when >=9 is the default | ||
| flags: '-e ARROW_SOURCE_HOME="/arrow" -e FORCE_BUNDLED_BUILD=TRUE -e LIBARROW_BUILD=TRUE' | ||
| image: ubuntu-r | ||
| image: ubuntu-r-only-r | ||
|
|
||
| # This also has -flto=auto | ||
| test-r-gcc-11: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.