Fix: ppdLutLoad() returning NULL due to undersized spec buffer #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build libppd | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| autoconf \ | |
| automake \ | |
| autopoint \ | |
| gettext \ | |
| libtool \ | |
| pkg-config \ | |
| libcups2-dev \ | |
| libcupsfilters-dev \ | |
| ghostscript \ | |
| poppler-utils \ | |
| mupdf-tools | |
| - name: Build project | |
| run: | | |
| ./autogen.sh | |
| ./configure | |
| make | |
| - name: Run tests | |
| run: make check |