summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-04-13 17:23:45 (GMT)
committerGitHub <noreply@github.com>2021-04-13 17:23:45 (GMT)
commit8fa1489365e7af8b90286c97db55a2dc60a05cde (patch)
treeb38ed3ba7dfc0d02141129566c51e55b088b9cfc /Misc
parent30ed93bfec5dfa7ee05982e2df8fd810f3f49305 (diff)
downloadcpython-8fa1489365e7af8b90286c97db55a2dc60a05cde.zip
cpython-8fa1489365e7af8b90286c97db55a2dc60a05cde.tar.gz
cpython-8fa1489365e7af8b90286c97db55a2dc60a05cde.tar.bz2
bpo-43811: Test multiple OpenSSL versions on GHA (GH-25360)
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>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2021-04-12-11-14-28.bpo-43811.vGNbnD.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-04-12-11-14-28.bpo-43811.vGNbnD.rst b/Misc/NEWS.d/next/Tests/2021-04-12-11-14-28.bpo-43811.vGNbnD.rst
new file mode 100644
index 0000000..d4c7066
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2021-04-12-11-14-28.bpo-43811.vGNbnD.rst
@@ -0,0 +1,2 @@
+Tests multiple OpenSSL versions on GitHub Actions. Use ccache to speed up
+testing.