aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-12-16 17:53:47 +0100
committerGitHub <noreply@github.com>2023-12-16 17:53:47 +0100
commit1d053905852b407eef472b0ef7886d10bb650383 (patch)
treeea3cc619a139a1fc8f96266a8bdb3432e4671400 /.github/workflows/main.yml
parent290742b069756218cd9d2075ea18b9fa60fc56ca (diff)
parent762f232146f3edc234c898b48e9daacf72ee9577 (diff)
downloadqpdf-1d053905852b407eef472b0ef7886d10bb650383.tar.zst
Merge pull request #1081 from jberkenbilt/future-build
Future build
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 03d6b929..44f6b142 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -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
@@ -139,3 +147,11 @@ jobs:
- uses: actions/checkout@v3
- name: 'Unsigned Char Tests'
run: build-scripts/test-unsigned-char
+ CxxNext:
+ runs-on: ubuntu-latest
+ # Build after Fuzzers to save concurrent runners
+ needs: Fuzzers
+ steps:
+ - uses: actions/checkout@v3
+ - name: 'Build with Next C++ standard'
+ run: build-scripts/test-c++-next