File tree Expand file tree Collapse file tree 5 files changed +15
-5
lines changed
Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 6464 - name : Install dependencies
6565 run : |
6666 sudo ./.github/workflows/posix-deps-apt.sh
67- sudo apt-get install -yq abigail-tools
67+ sudo apt-get install -yq --no-install-recommends abigail-tools
6868 - name : Build CPython
6969 env :
7070 CFLAGS : -g3 -O0
Original file line number Diff line number Diff line change 11#! /bin/sh
22apt-get update
33
4- apt-get -yq install \
4+ apt-get -yq --no-install-recommends install \
55 build-essential \
66 pkg-config \
77 ccache \
@@ -25,3 +25,13 @@ apt-get -yq install \
2525 uuid-dev \
2626 xvfb \
2727 zlib1g-dev
28+ <<< <<< < HEAD
29+ =======
30+
31+ # Workaround missing libmpdec-dev on ubuntu 24.04:
32+ # https://launchpad.net/~ondrej/+archive/ubuntu/php
33+ # https://deb.sury.org/
34+ sudo add-apt-repository ppa:ondrej/php
35+ apt-get update
36+ apt-get -yq --no-install-recommends install libmpdec-dev
37+ >>>>>>> 976808505a1 (gh-145351: use ` --no-install-recommends` (# 145352))
Original file line number Diff line number Diff line change 22
33export DEBIAN_FRONTEND=noninteractive
44./.github/workflows/posix-deps-apt.sh
5- apt-get install -yq abigail-tools python3
5+ apt-get install -yq --no-install-recommends abigail-tools python3
66export CFLAGS=" -g3 -O0"
77./configure --enable-shared && make
88make regen-abidump
Original file line number Diff line number Diff line change 9292 restore-keys : |
9393 ubuntu-doc-
9494 - name : ' Install Dependencies'
95- run : sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
95+ run : sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install --no-install-recommends wamerican
9696 - name : ' Configure CPython'
9797 run : ./configure --with-pydebug
9898 - name : ' Build CPython'
Original file line number Diff line number Diff line change 4242 if : ${{ fromJSON(inputs.bolt-optimizations) }}
4343 run : |
4444 sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh 19
45- sudo apt-get install bolt-19
45+ sudo apt-get install --no-install-recommends bolt-19
4646 echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
4747 - name : Configure OpenSSL env vars
4848 run : |
You can’t perform that action at this time.
0 commit comments