[Python-checkins] GitHub Action: Add gdb to posix dependencies (GH-23043)
vstinner
webhook-mailer at python.org
Fri Oct 30 17:52:34 EDT 2020
https://github.com/python/cpython/commit/6e03c0ad156797cd6e9132e895d55dac0344d340
commit: 6e03c0ad156797cd6e9132e895d55dac0344d340
branch: master
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2020年10月30日T22:52:30+01:00
summary:
GitHub Action: Add gdb to posix dependencies (GH-23043)
Sort also dependencies and remove duplicates (liblzma-dev).
files:
M .github/workflows/posix-deps-apt.sh
diff --git a/.github/workflows/posix-deps-apt.sh b/.github/workflows/posix-deps-apt.sh
index 2b879d32f8150..5c7b9988be451 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
More information about the Python-checkins
mailing list