[3.13] gh-145351: use --no-install-recommends (GH-145352) (#145402)

This commit is contained in:
Thomas Kowalski 2026-03-01 21:41:41 +01:00 committed by GitHub
parent 3682654300
commit 9f44febe70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,7 @@ jobs:
- name: Install dependencies
run: |
sudo ./.github/workflows/posix-deps-apt.sh
sudo apt-get install -yq abigail-tools
sudo apt-get install -yq --no-install-recommends abigail-tools
- name: Build CPython
env:
CFLAGS: -g3 -O0

View file

@ -1,7 +1,7 @@
#!/bin/sh
apt-get update
apt-get -yq install \
apt-get -yq --no-install-recommends install \
build-essential \
pkg-config \
ccache \

View file

@ -2,7 +2,7 @@ set -ex
export DEBIAN_FRONTEND=noninteractive
./.github/workflows/posix-deps-apt.sh
apt-get install -yq abigail-tools python3
apt-get install -yq --no-install-recommends abigail-tools python3
export CFLAGS="-g3 -O0"
./configure --enable-shared && make
make regen-abidump

View file

@ -92,7 +92,7 @@ jobs:
restore-keys: |
ubuntu-doc-
- name: 'Install Dependencies'
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install --no-install-recommends wamerican
- name: 'Configure CPython'
run: ./configure --with-pydebug
- name: 'Build CPython'