Skip to content

Commit 5f2832f

Browse files
committed
ci: Disable memray attach tests in cibuildwheel
These tests have broken because of changes to the GitHub runners. The old debuggers being installed in the containers are not compatible with the new Linux kernel being used by the runners. Rather than spend a bunch of effort to get this working, we'll just disable these tests in those environments. Note that we still exercising attaching with both debuggers in other workflows: the `test_with_coverage` workflow tests both gdb and lldb on glibc, and the `test_on_alpine` workflow tests both gdb and lldb on musl libc. Signed-off-by: Matt Wozniski <[email protected]>
1 parent 29daff6 commit 5f2832f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ before-all = [
104104
"make install",
105105

106106
# Install Memray's other build and test dependencies
107-
"yum install -y libunwind-devel gdb",
108-
"if ! yum install -y lldb; then echo lldb is not available; fi"
107+
"yum install -y libunwind-devel",
109108
]
110109

111110
[tool.cibuildwheel.macos]
@@ -177,5 +176,5 @@ before-all = [
177176
"make install",
178177

179178
# Install Memray's other build and test dependencies
180-
"apk add --update libunwind-dev lz4-dev gdb lldb"
179+
"apk add --update libunwind-dev lz4-dev"
181180
]

0 commit comments

Comments
 (0)