gh-145351: use --no-install-recommends (#145352)

This commit is contained in:
Thomas Kowalski
2026-03-01 16:24:42 +01:00
committed by GitHub
parent 6c417e44c9
commit 976808505a
4 changed files with 5 additions and 5 deletions
+2 -2
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 \
cmake \
@@ -31,4 +31,4 @@ apt-get -yq install \
# https://deb.sury.org/
sudo add-apt-repository ppa:ondrej/php
apt-get update
apt-get -yq install libmpdec-dev
apt-get -yq --no-install-recommends install libmpdec-dev
+1 -1
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
+1 -1
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'
+1 -1
View File
@@ -47,7 +47,7 @@ jobs:
if: ${{ fromJSON(inputs.bolt-optimizations) }}
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh 19
sudo apt-get install bolt-19
sudo apt-get install --no-install-recommends bolt-19
echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
- name: Configure OpenSSL env vars
run: |