mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
76189c44a2
libjpeg development files are on the macos GitHub Actions build image now, and downloading our own version was causing conflicts.
7 lines
186 B
Bash
Executable File
7 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd $(dirname $0)/..
|
|
cmake -S . -B build -DCI_MODE=1 -DCMAKE_BUILD_TYPE=Release
|
|
cmake --build build --verbose -j$(sysctl -n hw.ncpu) -- -k
|
|
(cd build; ctest --verbose)
|