Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .ci_support/linux_aarch64_cuda_compiler_version12.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cxx_compiler:
cxx_compiler_version:
- '14'
docker_image:
- quay.io/condaforge/linux-anvil-x86_64:alma9
- quay.io/condaforge/linux-anvil-aarch64:alma9
gflags:
- '2.2'
glog:
Expand Down
2 changes: 1 addition & 1 deletion .ci_support/linux_aarch64_cuda_compiler_versionNone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cxx_compiler:
cxx_compiler_version:
- '14'
docker_image:
- quay.io/condaforge/linux-anvil-x86_64:alma9
- quay.io/condaforge/linux-anvil-aarch64:alma9
gflags:
- '2.2'
glog:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,26 +45,26 @@ jobs:
runs_on: ['ubuntu-latest']
tools_install_dir: ~/miniforge3
- CONFIG: linux_aarch64_cuda_compiler_version12.9
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-aarch64:alma9
STORE_BUILD_ARTIFACTS: False
UPLOAD_PACKAGES: True
build_workspace_dir: build_artifacts
docker_run_args:
free_disk_space: quick
os: ubuntu
pagefile_size: 0
runs_on: ['ubuntu-latest']
runs_on: ['ubuntu-24.04-arm']
tools_install_dir: ~/miniforge3
- CONFIG: linux_aarch64_cuda_compiler_versionNone
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-aarch64:alma9
STORE_BUILD_ARTIFACTS: False
UPLOAD_PACKAGES: True
build_workspace_dir: build_artifacts
docker_run_args:
free_disk_space: quick
os: ubuntu
pagefile_size: 0
runs_on: ['ubuntu-latest']
runs_on: ['ubuntu-24.04-arm']
tools_install_dir: ~/miniforge3
- CONFIG: linux_ppc64le_
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
Expand Down
22 changes: 4 additions & 18 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@ bot:
- 22.x
- 21.x
build_platform:
linux_aarch64: linux_64
linux_ppc64le: linux_64
osx_arm64: osx_64
conda_build:
pkg_format: '2'
conda_forge_output_validation: true
github:
branch_name: main
tooling_branch_name: main
provider:
linux_aarch64: azure
linux_ppc64le: azure
linux_aarch64: default
osx_arm64: default
test: native_and_emulated
workflow_settings:
build_workspace_dir:
Expand Down
5 changes: 5 additions & 0 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ cmake -GNinja \
# Do not install arrow, only build.
cmake --build . --config Release

if [[ "$target_platform" == "osx-arm64" ]]; then
sudo sysctl -w kern.corefile=/tmp/core.%N.%P
sudo ulimit -c unlimited
fi

if [[ "$CONDA_BUILD_CROSS_COMPILATION" != 1 && "$cuda_compiler_version" == "None" ]]; then
npm install -g azurite
export ARROW_TEST_DATA=$SRC_DIR/testing/data
Expand Down
1 change: 1 addition & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ build:
# for cuda support, building with one version is enough to be compatible with
# all later versions, since arrow is only using libcuda, and not libcudart.
skip: true # [cuda_compiler_version not in ("None", cuda_compiler_version_min)]
skip: true # [not (aarch64 or arm64)]

requirements:
build:
Expand Down
Loading