mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 02:49:00 +00:00
Test qpdf + pikepdf with FUTURE
This commit is contained in:
parent
273eaf4682
commit
db4ec7a9db
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -118,6 +118,14 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- name: 'pikepdf'
|
||||
run: build-scripts/test-pikepdf
|
||||
pikepdf-future:
|
||||
runs-on: ubuntu-latest
|
||||
# Run after pikepdf to save concurrent runners
|
||||
needs: pikepdf
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: 'qpdf + pikepdf with FUTURE'
|
||||
run: build-scripts/test-pikepdf future
|
||||
Fuzzers:
|
||||
runs-on: ubuntu-latest
|
||||
needs: Prebuild
|
||||
|
@ -1,10 +1,20 @@
|
||||
#!/bin/bash
|
||||
set -ex
|
||||
cmake_extra=
|
||||
future=0
|
||||
if [ "$1" = "future" ]; then
|
||||
future=1
|
||||
cmake_extra=-DFUTURE=ON
|
||||
fi
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install \
|
||||
build-essential cmake zlib1g-dev libjpeg-dev libgnutls28-dev
|
||||
cmake -S . -B build -DBUILD_STATIC_LIBS=0 -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
cmake -S . -B build -DBUILD_STATIC_LIBS=0 -DCMAKE_BUILD_TYPE=RelWithDebInfo $cmake_extra
|
||||
cmake --build build --verbose -j$(nproc) --target libqpdf -- -k
|
||||
if [ "$future" = "1" ]; then
|
||||
# Run qpdf's test suite in FUTURE mode as well
|
||||
ctest --verbose
|
||||
fi
|
||||
export QPDF_SOURCE_TREE=$PWD
|
||||
export QPDF_BUILD_LIBDIR=$QPDF_SOURCE_TREE/build/libqpdf
|
||||
export LD_LIBRARY_PATH=$QPDF_BUILD_LIBDIR
|
||||
|
Loading…
Reference in New Issue
Block a user