[Python-checkins] bpo-42208: GitHub Action: Add gdb to posix dependencies (GH-23043) (GH-23047)

vstinner webhook-mailer at python.org
Fri Oct 30 18:16:27 EDT 2020


https://github.com/python/cpython/commit/09c6120be8c70366495b027ae3daa213609de3ed
commit: 09c6120be8c70366495b027ae3daa213609de3ed
branch: 3.9
author: Miss Skeleton (bot) <31488909+miss-islington at users.noreply.github.com>
committer: vstinner <vstinner at python.org>
date: 2020-10-30T23:16:17+01:00
summary:

 bpo-42208: GitHub Action: Add gdb to posix dependencies (GH-23043) (GH-23047)

Sort also dependencies and remove duplicates (liblzma-dev).
(cherry picked from commit 6e03c0ad156797cd6e9132e895d55dac0344d340)

Co-authored-by: Victor Stinner <vstinner at python.org>

Co-authored-by: Victor Stinner <vstinner at python.org>

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