mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 02:49:00 +00:00
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:
parent
d80b63c3c0
commit
76189c44a2
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
@ -90,11 +90,6 @@ jobs:
|
||||
needs: Prebuild
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: 'Download external libs'
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: external-libs
|
||||
path: .
|
||||
- name: 'Mac build and test'
|
||||
run: build-scripts/build-mac
|
||||
AppImage:
|
||||
|
@ -1,13 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -ex
|
||||
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 --build build --verbose -j$(sysctl -n hw.ncpu) -- -k
|
||||
(cd build; ctest --verbose)
|
||||
|
Loading…
Reference in New Issue
Block a user