Carlos Mogas da Silva
47234433a8
All checks were successful
Build docker image / build-and-publish (push) Successful in 3m0s
30 lines
637 B
YAML
30 lines
637 B
YAML
name: "RPM Build"
|
|
description: "Builds RPMs for a target system from a spec file"
|
|
|
|
inputs:
|
|
spec:
|
|
description: "Path to the spec file"
|
|
required: true
|
|
system:
|
|
description: "System target to build the package"
|
|
required: true
|
|
arch:
|
|
description: "Target arch to build the package"
|
|
required: true
|
|
default: "x86_64"
|
|
nocheck:
|
|
description: "Don't run %check commands"
|
|
required: false
|
|
default: false
|
|
|
|
outputs:
|
|
rpm:
|
|
description: "Path to the generated rpm file"
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- ${{ inputs.spec }}
|
|
- ${{ inputs.system }}
|
|
- ${{ inputs.arch }}
|