Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: don't run sssd-2.10+ on 'centos-8' #7081

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/analyze-target.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Analyze (target)"
on:
pull_request_target:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: "ci"
on:
push:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
pull_request:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/copr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
name: copr
on:
pull_request_target:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: next-actions/copr/filter-chroots@master
with:
coprcfg: ${{ steps.copr.outputs.coprcfg }}
filter: "fedora-.+-x86_64|centos-stream-.*-x86_64"
filter: "fedora-.+-x86_64|centos-stream-9-x86_64"
exclude: "fedora-eln-.+"

- name: Create copr project
Expand All @@ -94,12 +94,6 @@ jobs:
env:
coprcfg: ${{ steps.copr.outputs.coprcfg }}
run: |
# CentOS Stream 8
copr-cli --config "$coprcfg" edit-chroot \
--repos 'https://kojihub.stream.centos.org/kojifiles/repos/c8s-build/latest/$basearch' \
--modules idm:DL1 \
$COPR_ACCOUNT/$COPR_PROJECT/centos-stream-8-x86_64

# CentOS Stream 9
copr-cli --config "$coprcfg" edit-chroot \
--repos 'https://kojihub.stream.centos.org/kojifiles/repos/c9s-build/latest/$basearch/' \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copr_cleanup.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: copr cleanup
on:
pull_request_target:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
types: [closed]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-code-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: "Static code analysis"
on:
push:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
pull_request:
branches: [master, sssd-2-7, sssd-2-8, sssd-2-9]
branches: [master]
schedule:
# Everyday at midnight
- cron: '0 0 * * *'
Expand Down
2 changes: 1 addition & 1 deletion contrib/ci/get-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_fedora_matrix():


def get_centos_matrix():
return ['centos-8', 'centos-9']
return ['centos-9']


def get_other_matrix():
Expand Down