Skip to content

Allow using create-plugin with more complicated example names #1734

Allow using create-plugin with more complicated example names

Allow using create-plugin with more complicated example names #1734

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ main ]
permissions:
contents: read
jobs:
snap:
uses: ./.github/workflows/snap.yml
with:
deploy: true
secrets: inherit
matrix:
uses: ./.github/workflows/matrix.yml
fuzzing:
permissions:
actions: read # to fetch the artifacts (google/oss-fuzz/infra/cifuzz/actions/run_fuzzers)
contents: read # to clone the repo (google/oss-fuzz/infra/cifuzz/actions/run_fuzzers)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@32f1d4deadc82279ec9001a837f2424e185c69a2 # master
with:
oss-fuzz-project-name: 'fwupd'
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@32f1d4deadc82279ec9001a837f2424e185c69a2 # master
with:
oss-fuzz-project-name: 'fwupd'
fuzz-seconds: 150
dry-run: false
- name: Upload Crash
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts