Skip to content

Commit

Permalink
CI: Specify process number for building ImageMagick (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 authored May 26, 2024
1 parent aff0a27 commit 6bcea5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions before_install_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ build_imagemagick() {

cd "${build_dir}"
./configure --prefix=/usr "${options}"
make -j
make -j $(nproc)
}

if [ ! -d "${build_dir}" ]; then
build_imagemagick
fi

cd "${build_dir}"
sudo make install -j
sudo make install -j $(nproc)
cd "${project_dir}"

sudo ldconfig
Expand Down

0 comments on commit 6bcea5b

Please sign in to comment.