mirror of
https://github.com/python/cpython.git
synced 2026-04-14 15:50:50 +00:00
[3.13] gh-145351: use --no-install-recommends (GH-145352) (#145402)
This commit is contained in:
parent
3682654300
commit
9f44febe70
4 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/posix-deps-apt.sh
vendored
2
.github/workflows/posix-deps-apt.sh
vendored
|
|
@ -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 \
|
||||
|
|
|
|||
2
.github/workflows/regen-abidump.sh
vendored
2
.github/workflows/regen-abidump.sh
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/reusable-docs.yml
vendored
2
.github/workflows/reusable-docs.yml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue