oss-fuzz: Add unit test build to oss-fuzz build script #466
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: Debian pkg-config | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pkg-config: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: debian:12 | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Install dependencies | |
| run: | | |
| apt -y update | |
| apt -y --no-install-recommends install g++ cmake make pkg-config | |
| - name: Build and install | |
| run: | | |
| cmake -B build | |
| cmake --build build | |
| cmake --install build | |
| - name: Test pkg-config | |
| run: pkg-config --cflags --libs ada |