Remove support for Debian 10 (#1812)

pull/1814/head
Disconnect3d 2 years ago committed by GitHub
parent afd3839086
commit 2552f95e1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
images: [ubuntu18.04, ubuntu20.04, ubuntu22.04, debian10, debian11, archlinux]
images: [ubuntu18.04, ubuntu20.04, ubuntu22.04, debian11, archlinux]
runs-on: ubuntu-latest
timeout-minutes: 30

@ -36,14 +36,6 @@ services:
args:
image: ubuntu:22.04
debian10:
<<: *base-spec
build:
context: .
dockerfile: Dockerfile
args:
image: debian:10
debian11:
<<: *base-spec
build:

@ -110,6 +110,7 @@ def test_command_vmmap_on_coredump_on_crash_simple_binary(start_binary, unload_f
assert len(vmmaps) == old_len_vmmaps - 1
else:
# E.g. on Debian 10 with GDB 8.2.1 the core dump does not contain mappings info
# (note: we don't support Debian 10 anymore, so this code may be removed in the future)
assert len(vmmaps) == old_len_vmmaps - 2
binary_map = next(i for i in expected_maps if CRASH_SIMPLE_BINARY in i[-1])
expected_maps.remove(binary_map)

Loading…
Cancel
Save