Skip to content

Commit

Permalink
Run musl CI tests using LLDB
Browse files Browse the repository at this point in the history
We updated our alpine version so I decided to see if we could use LLDB
instead of GDB for our debugger. And yes, we can now without a hanging.

I'm leaving GDB in the image for now in case we need to switch back.

Closes #4176
  • Loading branch information
SeanTAllen committed Oct 4, 2023
1 parent e86d34a commit c331227
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apk update \
curl \
py3-pip \
gdb \
lldb \
&& pip install cloudsmith-cli

# add user pony in order to not run tests as root
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ jobs:
- image: ghcr.io/ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20230924
name: x86-64 Linux glibc
debugger: lldb
- image: ghcr.io/ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20230830
- image: ghcr.io/ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20231003
name: x86-64 Linux musl
debugger: gdb
debugger: lldb

name: ${{ matrix.name }}
container:
Expand Down

0 comments on commit c331227

Please sign in to comment.