(MODULES-11710) Add Puppet 9 support #472
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: "ci" | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| workflow_dispatch: | |
| jobs: | |
| Spec: | |
| uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" | |
| with: | |
| # patron (a faraday-patron/faraday_middleware transitive dep pulled in by | |
| # puppet_litmus's winrm chain) needs libcurl dev headers to build its native extension. | |
| additional_packages: "libcurl4-openssl-dev" | |
| secrets: "inherit" | |
| Acceptance: | |
| needs: Spec | |
| uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" | |
| with: | |
| # AmazonLinux-2 maps to el-7 packaging (like the EL7 family we already dropped from | |
| # metadata.json), and Puppet 9 ships no el-7 agent build, so exclude it from that lane. | |
| flags: "--nightly --collection-platform-exclude 9:ubuntu-20.04 --collection-platform-exclude 9:amazonlinux-2" | |
| secrets: "inherit" |