Various hardening for commonutils library internal calls for fuzzing #608
Workflow file for this run
This file contains 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: Module Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
schedule: | |
- cron: '0 20 * * *' # Every day at 12pm PST (UTC-8) | |
jobs: | |
test: | |
name: Test | |
uses: ./.github/workflows/module-test-run.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
[ | |
{ os: centos, version: 8, package-type: RPM }, | |
{ os: debian, version: 10, package-type: DEB }, | |
{ os: debian, version: 11, package-type: DEB }, | |
{ os: mariner, version: 2, package-type: RPM }, | |
{ os: oraclelinux, version: 8, package-type: RPM }, | |
{ os: rhel, version: 8, package-type: RPM }, | |
{ os: rhel, version: 9, package-type: RPM }, | |
{ os: rockylinux, version: 9, package-type: RPM }, | |
{ os: sles, version: 15, package-type: RPM }, | |
{ os: ubuntu, version: 20.04, package-type: DEB }, | |
{ os: ubuntu, version: 22.04, package-type: DEB }, | |
] | |
arch: [amd64] | |
with: | |
target: ${{ matrix.target.os }}-${{ matrix.target.version }} | |
arch: ${{ matrix.arch }} | |
package-type: ${{ matrix.target.package-type }} | |
excluded-tests: ${{ matrix.target.excluded-tests }} |