mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
8fa1489365
The new checks are only executed when one or more OpenSSL-related files are modified. The checks run a handful of networking and hashing test suites. All SSL checks are optional. This PR also introduces ccache to speed up compilation. In common cases it speeds up configure and compile time from about 90 seconds to less than 30 seconds. Signed-off-by: Christian Heimes <christian@python.org>
23 lines
337 B
Bash
Executable File
23 lines
337 B
Bash
Executable File
#!/bin/sh
|
|
apt-get update
|
|
|
|
apt-get -yq install \
|
|
build-essential \
|
|
ccache \
|
|
gdb \
|
|
lcov \
|
|
libbz2-dev \
|
|
libffi-dev \
|
|
libgdbm-dev \
|
|
liblzma-dev \
|
|
libncurses5-dev \
|
|
libreadline6-dev \
|
|
libsqlite3-dev \
|
|
libssl-dev \
|
|
lzma \
|
|
lzma-dev \
|
|
tk-dev \
|
|
uuid-dev \
|
|
xvfb \
|
|
zlib1g-dev
|