Skip to content

Commit

Permalink
GH-35346: [CI][Python] Move gdb from env-file to dockerfile (#35348)
Browse files Browse the repository at this point in the history
### Rationale for this change
Similar to the issue with windows in #35057 gdb is also not available for arm64, causing benchmarks to fail.

This moves gdb into the dockerfile that actually needs it to prevent further changes. An alternative would be to use multi-arch-gdb but that is only available in `-c memfault` and adding on an entire new channel will only increase solve times and potentially cause problems.

* Closes: #35346

Authored-by: Jacob Wujciak-Jens <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
  • Loading branch information
assignUser authored Apr 27, 2023
1 parent 9feee48 commit 4409f3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion ci/conda_env_unix.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@

autoconf
ccache
gdb
orc
pkg-config
1 change: 1 addition & 0 deletions ci/docker/conda-python.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ COPY ci/conda_env_python.txt \
RUN mamba install -q -y \
--file arrow/ci/conda_env_python.txt \
--file arrow/ci/conda_env_sphinx.txt \
gdb \
$([ "$python" == "3.7" ] && echo "pickle5") \
python=${python} \
nomkl && \
Expand Down

0 comments on commit 4409f3c

Please sign in to comment.