diff options
author | Victor Stinner <vstinner@python.org> | 2020-10-30 21:52:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 21:52:30 (GMT) |
commit | 6e03c0ad156797cd6e9132e895d55dac0344d340 (patch) | |
tree | 958defa439a0ad4b64c1e79c21b9894248f83d3a /.github | |
parent | eba5bf2f5672bf4861c626937597b85ac0c242b9 (diff) | |
download | cpython-6e03c0ad156797cd6e9132e895d55dac0344d340.zip cpython-6e03c0ad156797cd6e9132e895d55dac0344d340.tar.gz cpython-6e03c0ad156797cd6e9132e895d55dac0344d340.tar.bz2 |
GitHub Action: Add gdb to posix dependencies (GH-23043)
Sort also dependencies and remove duplicates (liblzma-dev).
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/posix-deps-apt.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/posix-deps-apt.sh b/.github/workflows/posix-deps-apt.sh index 2b879d3..5c7b998 100755 --- a/.github/workflows/posix-deps-apt.sh +++ b/.github/workflows/posix-deps-apt.sh @@ -3,19 +3,19 @@ apt-get update apt-get -yq install \ build-essential \ - zlib1g-dev \ + gdb \ + lcov \ libbz2-dev \ + libffi-dev \ + libgdbm-dev \ liblzma-dev \ libncurses5-dev \ libreadline6-dev \ libsqlite3-dev \ libssl-dev \ - libgdbm-dev \ - tk-dev \ lzma \ lzma-dev \ - liblzma-dev \ - libffi-dev \ + tk-dev \ uuid-dev \ xvfb \ - lcov + zlib1g-dev |