Consolidate workflows
Build and provide rpm of python types-requests / Run rpmbuild (f44) (release) Has been cancelled
Build and provide rpm of python types-requests / Run rpmbuild (rawhide) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f43) (release) Successful in 3m10s
Build and provide rpm of python types-requests / Start build on COPR (rawhide) (release) Successful in 2m40s
Build and provide rpm of python types-requests / Run rpmbuild (f43) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f44) (release) Successful in 3m12s
Build and provide rpm of python types-requests / Run rpmbuild (f44) (release) Has been cancelled
Build and provide rpm of python types-requests / Run rpmbuild (rawhide) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f43) (release) Successful in 3m10s
Build and provide rpm of python types-requests / Start build on COPR (rawhide) (release) Successful in 2m40s
Build and provide rpm of python types-requests / Run rpmbuild (f43) (release) Has been cancelled
Build and provide rpm of python types-requests / Start build on COPR (f44) (release) Successful in 3m12s
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
name: Build and provide rpm of python-types-requests
|
||||
run-name: Build python-types-requests from ${{ gitea.repository }} on COPR
|
||||
on: [release]
|
||||
jobs:
|
||||
rpmbuild:
|
||||
runs-on: rawhide-minimal-copr
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: https://git.demus.dk/actions/git-clone@main
|
||||
- name: Build src.rpm and send to COPR
|
||||
uses: https://git.demus.dk/actions/copr-build@main
|
||||
with:
|
||||
copr_config: ${{ secrets.COPR_API_CONFIG }}
|
||||
copr_project: packages
|
||||
fedora_release: rawhide
|
||||
@@ -1,18 +1,22 @@
|
||||
name: Build and provide rpm of python-types-requests
|
||||
run-name: Build python-types-requests from ${{ gitea.repository }} on COPR
|
||||
name: Build and provide rpm of python types-requests
|
||||
run-name: Build python types-requests from ${{ gitea.repository }} on COPR
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
fedora_release:
|
||||
fedoraversion:
|
||||
type: choice
|
||||
description: 'Choose a fedora release'
|
||||
description: "Choose a fedora release"
|
||||
required: true
|
||||
options:
|
||||
- 'f43'
|
||||
- 'rawhide'
|
||||
options: [ f43, f44, rawhide ]
|
||||
coprproject:
|
||||
type: choice
|
||||
description: "Which repo"
|
||||
required: true
|
||||
options: [ packages, packages-test ]
|
||||
jobs:
|
||||
rpmbuild:
|
||||
runs-on: ${{ inputs.fedora_release }}-minimal-copr
|
||||
coprbuild:
|
||||
name: "Start build on COPR"
|
||||
runs-on: ${{ inputs.fedoraversion }}-minimal-copr
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: https://git.demus.dk/actions/git-clone@main
|
||||
@@ -20,5 +24,5 @@ jobs:
|
||||
uses: https://git.demus.dk/actions/copr-build@main
|
||||
with:
|
||||
copr_config: ${{ secrets.COPR_API_CONFIG }}
|
||||
copr_project: packages
|
||||
fedora_release: ${{ inputs.fedora_release }}
|
||||
copr_project: ${{ inputs.coprproject }}
|
||||
fedora_release: ${{ inputs.fedoraversion }}
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
name: Build and provide rpm of python-types-requests
|
||||
run-name: Build python-types-requests from ${{ gitea.repository }} on COPR
|
||||
name: Build and provide rpm of python types-requests
|
||||
run-name: Build python types-requests from ${{ gitea.repository }} on COPR
|
||||
on: [release]
|
||||
jobs:
|
||||
rpmbuild:
|
||||
runs-on: f43-minimal-copr
|
||||
coprbuild:
|
||||
name: "Start build on COPR"
|
||||
strategy:
|
||||
matrix:
|
||||
fedoraversion: [ f43, f44, rawhide ]
|
||||
runs-on: ${{ matrix.fedoraversion }}-minimal-copr
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: https://git.demus.dk/actions/git-clone@main
|
||||
@@ -12,4 +16,4 @@ jobs:
|
||||
with:
|
||||
copr_config: ${{ secrets.COPR_API_CONFIG }}
|
||||
copr_project: packages
|
||||
fedora_release: f43
|
||||
fedora_release: ${{ matrix.fedoraversion }}
|
||||
@@ -0,0 +1,23 @@
|
||||
name: Build and provide rpm of python types-requests
|
||||
run-name: Rpmbuild python types-requests at ${{ gitea.repository }} by ${{ github.actor }}
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
runsonlabel:
|
||||
type: choice
|
||||
description: "Choose a label"
|
||||
required: true
|
||||
options: [ f43, f44, rawhide ]
|
||||
jobs:
|
||||
rpmbuild:
|
||||
name: "Run rpmbuild"
|
||||
runs-on: ${{ inputs.runsonlabel }}-minimal-rpmbuild
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: https://git.demus.dk/actions/git-clone@main
|
||||
- name: Build the rpms
|
||||
uses: https://git.demus.dk/actions/rpmbuild@main
|
||||
- name: Deploy to packages
|
||||
uses: https://git.demus.dk/actions/rpm-deploy@main
|
||||
with:
|
||||
pat: ${{ secrets.RPM_REPO_WRITE }}
|
||||
@@ -0,0 +1,19 @@
|
||||
name: Build and provide rpm of python types-requests
|
||||
run-name: Rpmbuild python types-requests by @${{ github.actor }}
|
||||
on: [release]
|
||||
jobs:
|
||||
rpmbuild:
|
||||
name: "Run rpmbuild"
|
||||
strategy:
|
||||
matrix:
|
||||
rpmbuilder: [ f43, f44, rawhide ]
|
||||
runs-on: ${{ matrix.rpmbuilder }}-minimal-rpmbuild
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: https://git.demus.dk/actions/git-clone@main
|
||||
- name: Build the rpms
|
||||
uses: https://git.demus.dk/actions/rpmbuild@main
|
||||
- name: Deploy to packages
|
||||
uses: https://git.demus.dk/actions/rpm-deploy@main
|
||||
with:
|
||||
pat: ${{ secrets.RPM_REPO_WRITE }}
|
||||
@@ -1 +1,3 @@
|
||||
/types-requests-2.26.1.tar.gz
|
||||
|
||||
.idea/
|
||||
|
||||
Reference in New Issue
Block a user