qpdf/.github/workflows/main.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

176 lines
4.8 KiB
YAML
Raw Permalink Normal View History

2020-10-16 21:33:12 +00:00
name: QPDF Build
env:
QTEST_COLOR: 1
on:
push:
branches:
- main
- build
2020-10-16 22:07:23 +00:00
- build/*
paths-ignore:
- 'ChangeLog'
- 'README*'
2024-01-07 13:42:24 +00:00
- 'TODO*'
2020-10-16 21:33:12 +00:00
pull_request:
schedule:
# Building regularly with cron makes it safe for us to use
# *-latest with runs-on. If a new version of tools or agents comes
# out, we'll find out fast if our builds break on it because we
# have reliable testing.
- cron: '12 4 * * 5'
2020-10-16 21:33:12 +00:00
jobs:
Prebuild:
# Run steps that are needed by the Windows build but are easier to
# build on Linux. Also create the documentation distribution.
2020-10-16 21:33:12 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Run pre-build steps'
run: build-scripts/prebuild ${{ secrets.GITHUB_TOKEN }}
- name: 'Upload documentation for later build steps'
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
2020-10-16 21:33:12 +00:00
with:
name: doc
path: doc.zip
- name: 'Upload external libs'
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
with:
name: external-libs
path: external-libs-dist
- name: 'Upload doc distribution'
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
with:
2024-02-17 23:52:08 +00:00
name: distribution-prebuild
path: distribution
2020-10-16 21:33:12 +00:00
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2020-10-16 21:33:12 +00:00
- name: 'Generate, build, and test'
run: build-scripts/build-linux
- name: Upload distribution
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
2020-10-16 21:33:12 +00:00
with:
2024-02-17 23:52:08 +00:00
name: distribution-linux
2020-10-16 21:33:12 +00:00
path: distribution
Windows:
runs-on: windows-latest
needs: Prebuild
2020-10-16 21:33:12 +00:00
strategy:
fail-fast: false
max-parallel: 4
matrix:
tool: [msvc, mingw]
wordsize: [64, 32]
steps:
- name: 'Disable git autocrlf'
shell: bash
run: git config --global core.autocrlf input
- uses: actions/checkout@v4
- name: 'Download documentation'
2024-02-17 23:52:08 +00:00
uses: actions/download-artifact@v4
2020-10-16 21:33:12 +00:00
with:
name: doc
path: .
- name: 'Download external libs'
2024-02-17 23:52:08 +00:00
uses: actions/download-artifact@v4
with:
name: external-libs
path: .
2020-10-16 21:33:12 +00:00
- name: 'Build, test, generate binary distributions'
shell: cmd
run: build-scripts/build-windows.bat ${{ matrix.wordsize }} ${{ matrix.tool }}
- name: 'Upload binary distributions'
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
2020-10-16 21:33:12 +00:00
with:
2024-02-17 23:52:08 +00:00
name: distribution-windows-${{ matrix.wordsize }}-${{ matrix.tool }}
2020-10-16 21:33:12 +00:00
path: distribution
macOS:
runs-on: macos-latest
needs: Prebuild
2020-10-16 21:33:12 +00:00
steps:
- uses: actions/checkout@v4
2020-10-16 21:33:12 +00:00
- name: 'Mac build and test'
run: build-scripts/build-mac
AppImage:
runs-on: ubuntu-latest
needs: Prebuild
2020-10-16 21:33:12 +00:00
steps:
- uses: actions/checkout@v4
2020-10-16 21:33:12 +00:00
- name: 'Build AppImage'
run: build-scripts/build-appimage
- name: 'Upload AppImage'
2024-02-17 23:52:08 +00:00
uses: actions/upload-artifact@v4
2020-10-16 21:33:12 +00:00
with:
2024-02-17 23:52:08 +00:00
name: distribution-appimage
2020-10-16 21:33:12 +00:00
path: distribution
2023-02-25 21:05:14 +00:00
pikepdf:
strategy:
fail-fast: false
max-parallel: 1
matrix:
future: ['', 'future']
2023-02-25 21:05:14 +00:00
runs-on: ubuntu-latest
needs: Prebuild
steps:
- uses: actions/checkout@v4
2023-02-25 21:05:14 +00:00
- name: 'pikepdf'
run: build-scripts/test-pikepdf ${{ matrix.future }}
2020-10-16 21:33:12 +00:00
Sanitizers:
runs-on: ubuntu-latest
needs: Prebuild
2020-10-16 21:33:12 +00:00
steps:
- uses: actions/checkout@v4
2020-10-16 21:33:12 +00:00
- name: 'Sanitizer Tests'
run: build-scripts/test-sanitizers
2024-02-17 23:34:30 +00:00
CodeCov:
runs-on: ubuntu-latest
needs: Prebuild
steps:
- uses: actions/checkout@v4
2024-02-17 23:34:30 +00:00
- name: 'Code Coverage'
run: build-scripts/test-coverage
- id: set_branch
run: |
if [ "${{ github.event_name }}" = "push" ]; then
echo "override_branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
else
echo "override_branch=" >> $GITHUB_OUTPUT
fi
2024-02-17 23:34:30 +00:00
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
override_branch: ${{ steps.set_branch.outputs.override_branch }}
QuickJobs:
runs-on: ubuntu-latest
needs: Prebuild
strategy:
fail-fast: false
max-parallel: 3
matrix:
script:
- build-fuzzer
2023-12-23 15:41:55 +00:00
- pkg-test
- build-linux32
- test-alt-zlib
- test-unsigned-char
- test-c++-next
steps:
- uses: actions/checkout@v4
- name: ${{ matrix.script }}
run: build-scripts/${{ matrix.script }}
2024-02-17 23:52:08 +00:00
MergeArtifacts:
runs-on: ubuntu-latest
needs:
- Prebuild
- Linux
- Windows
- AppImage
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: distribution
pattern: distribution-*