Commit 754a20d4 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

ci: Checkout 3.10 and replace libcrypt to libcrypto.

No related merge requests found
Pipeline #55592 passed with stages
in 10 minutes and 32 seconds
Showing with 8 additions and 1 deletion
+8 -1
......@@ -16,6 +16,8 @@ build:
- linux
script:
- cd cpython
- git branch 3.10
- git checkout 3.10
- ./configure --enable-optimizations --with-lto --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=install --with-computed-gotos --prefix=$(pwd)/../dist/ --disable-test-modules
- make -j18 all
- make install
......
......@@ -54,7 +54,12 @@ def make_link(name):
return make_link_aux(name.split(".")[:-1])
libs = ["libssl", "libcrypt", "libz", "libffi"]
libs = [
"libssl", #"libcrypt",
"libcrypto",
"libz",
"libffi"
]
for lib in libs:
files = find_filter(lib)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment