1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: .distro/python-scikit-build.spec
files_to_sync:
- src: .distro/
dest: ./
filters:
- "- plans/main.fmf.dist-git"
- "- plans/rpminspect.fmf"
- "- plans/rpmlint.fmf"
- .packit.yaml
- src: .distro/plans/main.fmf.dist-git
dest: plans/main.fmf
upstream_package_name: scikit-build
downstream_package_name: python-scikit-build
update_release: false
jobs:
- &copr_build
job: copr_build
trigger: release
owner: "@scikit-build"
project: release
targets: &targets
- fedora-all-x86_64
- fedora-all-aarch64
- &tests
job: tests
trigger: release
targets: *targets
fmf_path: .distro
- <<: *copr_build
trigger: commit
branch: main
project: nightly
- <<: *tests
trigger: commit
branch: main
- <<: *copr_build
trigger: pull_request
project: scikit-build
update_release: true
release_suffix: "{PACKIT_RPMSPEC_RELEASE}"
- <<: *tests
trigger: pull_request
- job: propose_downstream
trigger: release
dist_git_branches:
# TODO: Switch to fedora-development and fedora-latest
# There is an issue that the commits diverge on different PRs. In the meantime will create PRs on branched fedora
# manually
# https://github.com/packit/packit/issues/1724
- fedora-rawhide
- job: koji_build
trigger: commit
dist_git_branches:
- fedora-all
- job: bodhi_update
trigger: commit
dist_git_branches:
- fedora-branched
|