Remove custom jpeg library installation for mac build

libjpeg development files are on the macos GitHub Actions build image
now, and downloading our own version was causing conflicts.
This commit is contained in:
Jay Berkenbilt 2023-02-17 20:22:55 -05:00
parent d80b63c3c0
commit 76189c44a2
2 changed files with 0 additions and 12 deletions

View File

@ -90,11 +90,6 @@ jobs:
needs: Prebuild needs: Prebuild
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: 'Download external libs'
uses: actions/download-artifact@v3
with:
name: external-libs
path: .
- name: 'Mac build and test' - name: 'Mac build and test'
run: build-scripts/build-mac run: build-scripts/build-mac
AppImage: AppImage:

View File

@ -1,13 +1,6 @@
#!/bin/bash #!/bin/bash
set -ex set -ex
cd $(dirname $0)/.. cd $(dirname $0)/..
unzip qpdf-external-libs-src.zip
tar xzf external-libs-src/jpegsrc*
cd jpeg-*
./configure
make -k
sudo make install
cd ..
cmake -S . -B build -DCI_MODE=1 -DCMAKE_BUILD_TYPE=Release cmake -S . -B build -DCI_MODE=1 -DCMAKE_BUILD_TYPE=Release
cmake --build build --verbose -j$(sysctl -n hw.ncpu) -- -k cmake --build build --verbose -j$(sysctl -n hw.ncpu) -- -k
(cd build; ctest --verbose) (cd build; ctest --verbose)