Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
liangyuanpeng committed Jul 7, 2024
1 parent eb5d601 commit 8df2617
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-schedule-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
kubeapiserver-version: [ v1.23.4, v1.24.2, v1.25.0, v1.26.0, v1.27.3, v1.28.0, v1.29.0, v1.30.0 ]
karmada-version: [ master,release-1.10, release-1.9, release-1.8 ]
karmada-version: [ master, pr, release-1.10, release-1.9, release-1.8 ]
steps:
# Free up disk space on Ubuntu
- name: Free Disk Space (Ubuntu)
Expand All @@ -34,6 +34,14 @@ jobs:
docker-images: false
swap-storage: false
- name: checkout code
if: matrix.karmada-version == 'pr'
uses: actions/checkout@v4
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags.
# We need to guess version via git tags.
fetch-depth: 0
- name: checkout code
if: matrix.karmada-version != 'pr'
uses: actions/checkout@v4
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags.
Expand Down

0 comments on commit 8df2617

Please sign in to comment.