Skip to content

Commit

Permalink
Enable backtraces in more cases
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 10, 2024
1 parent 44b7271 commit 5aa9253
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/java_jni.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ jobs:
env:
ARCHERY_DOCKER_USER: ${{ secrets.DOCKERHUB_USER }}
ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
run: archery docker run java-jni-manylinux-2014
run: |
source ci/scripts/util_enable_core_dumps.sh
archery docker run java-jni-manylinux-2014
- name: Docker Push
if: >-
success() &&
Expand Down
1 change: 1 addition & 0 deletions ci/docker/fedora-39-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ RUN dnf update -y && \
curl-devel \
gcc \
gcc-c++ \
gdb \
gflags-devel \
git \
glog-devel \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-20.04-cpp-minimal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUN apt-get update -y -q && \
ccache \
cmake \
curl \
gdb \
git \
libssl-dev \
libcurl4-openssl-dev \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-22.04-cpp-minimal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUN apt-get update -y -q && \
ccache \
cmake \
curl \
gdb \
git \
libssl-dev \
libcurl4-openssl-dev \
Expand Down

0 comments on commit 5aa9253

Please sign in to comment.