Skip to content

Commit

Permalink
apacheGH-41630: [Benchmarking] Fix out-of-source build in benchmarks (a…
Browse files Browse the repository at this point in the history
…pache#41631)

### Rationale for this change

Broken benchmarks after apache#41455 
### What changes are included in this PR?

Use /tmp/arrow as build dir.

### Are these changes tested?

### Are there any user-facing changes?

* GitHub Issue: apache#41630

Authored-by: Jacob Wujciak-Jens <[email protected]>
Signed-off-by: Jacob Wujciak-Jens <[email protected]>
  • Loading branch information
assignUser authored and JerAguilon committed May 29, 2024
1 parent ca0c561 commit 70e1938
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev/conbench_envs/hooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ build_arrow_cpp() {
}

build_arrow_python() {
ci/scripts/python_build.sh $(pwd) $(pwd)
mkdir -p /tmp/arrow
ci/scripts/python_build.sh $(pwd) /tmp/arrow
}

build_arrow_r() {
Expand All @@ -69,7 +70,8 @@ build_arrow_r() {
}

build_arrow_java() {
ci/scripts/java_build.sh $(pwd) $(pwd)
mkdir -p /tmp/arrow
ci/scripts/java_build.sh $(pwd) /tmp/arrow
}

install_archery() {
Expand Down

0 comments on commit 70e1938

Please sign in to comment.