More cores
Some checks failed
Deploy on push / build (push) Failing after 21s
Deploy on push / push (push) Has been skipped

This commit is contained in:
Sven Heidemann 2025-01-04 14:54:06 +01:00
parent 8746613413
commit 0960e4e6ec

View File

@ -30,7 +30,7 @@ RUN sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev l
tar -xf Python-3.12.*.tgz && \
cd Python-3.12.*/ && \
./configure --prefix=/usr/local --enable-optimizations --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib" && \
make -j 2 && \
make -j $(nproc) && \
sudo make altinstall && \
python3.12 -m pip install --user --upgrade pip && \
cd ../ && sudo rm -rf Python-3.12.*/