Skip to content

Commit

Permalink
workflows: Disable ceph + lvm on PRs and cron.
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Laing <[email protected]>
  • Loading branch information
markylaing committed Sep 23, 2024
1 parent 57cc91c commit d6992c9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,30 @@ jobs:
go: ["1.22.x"]
suite: ["cluster", "standalone"]
backend: ["dir", "btrfs", "lvm", "zfs", "ceph", "random"]
isPullRequest:
- ${{ github.event.name == 'pull_request' }}
isSchedule:
- ${{ github.event.name == 'schedule' }}
include:
- go: stable
suite: cluster
backend: dir
- go: stable
suite: standalone
backend: dir
exclude:
- isPullRequest: true
backend: lvm
- isSchedule: true
backend: lvm
- isPullRequest: true
backend: ceph
- isSchedule: true
backend: ceph
- isPullRequest: true
backend: random
- isSchedule: true
backend: random

steps:
- name: Checkout
Expand Down

0 comments on commit d6992c9

Please sign in to comment.