Add some automation for doing periodic mass rebuilds of Fedora packages #1
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: Mass Rebuild Bisect | ||
permissions: | ||
contents: read | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
pkg: | ||
description: "The package to bisect" | ||
required: true | ||
type: string | ||
workflow_call: | ||
inputs: | ||
pkg: | ||
description: "The package to bisect" | ||
required: true | ||
type: string | ||
jobs: | ||
mass-rebuild-bisect: | ||
runs-on: ubuntu-24.04 | ||
container: | ||
image: "ghcr.io/$GITHUB_REPOSITORY_OWNER/llvm-snapshots-reproducer" | ||
steps: | ||
- run: | | ||
bash bisect.sh ${{ inputs.pkg }} | ||