diff --git a/.github/workflows/labled_doctest.yaml b/.github/workflows/labled_doctest.yaml index 0fc70c9d..214f2398 100644 --- a/.github/workflows/labled_doctest.yaml +++ b/.github/workflows/labled_doctest.yaml @@ -23,6 +23,7 @@ on: branches: - 'main' - '*-dev' + - 'releases/v*' paths: # If we are changing the doctest we should do a PR test - '.github/workflows/labled_doctest.yaml' diff --git a/.github/workflows/labled_download_model.yaml b/.github/workflows/labled_download_model.yaml index 397b2d41..4f433902 100644 --- a/.github/workflows/labled_download_model.yaml +++ b/.github/workflows/labled_download_model.yaml @@ -4,7 +4,7 @@ on: pull_request: paths: - '.github/workflows/misc/model_list.json' - - '.github/workflows/download_model.yaml' + - '.github/workflows/labled_download_model.yaml' types: [labeled, synchronize] defaults: diff --git a/.github/workflows/pr_test_full.yaml b/.github/workflows/pr_test_full.yaml index b5dcd4b0..a96fe250 100644 --- a/.github/workflows/pr_test_full.yaml +++ b/.github/workflows/pr_test_full.yaml @@ -21,6 +21,7 @@ on: branches: - 'main' - '*-dev' + - 'releases/v*' types: [ labeled, synchronize ] # Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly diff --git a/.github/workflows/pr_test_light.yaml b/.github/workflows/pr_test_light.yaml index 8deea089..77c3ef46 100644 --- a/.github/workflows/pr_test_light.yaml +++ b/.github/workflows/pr_test_light.yaml @@ -22,6 +22,8 @@ on: branches: - 'main' - '*-dev' + - 'releases/v*' + # Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly # declared as "shell: bash -el {0}" on steps that need to be properly activated. # It's used to activate ascend-toolkit environment variables. @@ -70,7 +72,7 @@ jobs: - 'packages.txt' ut_tracker: - 'tests/ut/**' - - '.github/workflows/vllm_ascend_test_pr_light.yaml' + - '.github/workflows/pr_test_light.yaml' ut: needs: [lint, changes] diff --git a/README.md b/README.md index a21aa484..749e4285 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ Below is maintained branches: | v0.7.3-dev | Maintained | CI commitment for vLLM 0.7.3 version, only bug fix is allowed and no new release tag any more. | | v0.9.1-dev | Maintained | CI commitment for vLLM 0.9.1 version | | v0.11.0-dev | Maintained | CI commitment for vLLM 0.11.0 version | +| releases/v0.13.0 | Maintained | CI commitment for vLLM 0.13.0 version | | rfc/feature-name | Maintained | [Feature branches](https://docs.vllm.ai/projects/ascend/en/latest/community/versioning_policy.html#feature-branches) for collaboration | Please refer to [Versioning policy](https://docs.vllm.ai/projects/ascend/en/latest/community/versioning_policy.html) for more details. diff --git a/README.zh.md b/README.zh.md index 51e5f0e0..a20d480b 100644 --- a/README.zh.md +++ b/README.zh.md @@ -79,6 +79,7 @@ vllm-ascend有主干分支和开发分支。 | v0.7.3-dev | Maintained | 基于vLLM v0.7.3版本CI看护, 只允许Bug修复,不会再发布新版本 | | v0.9.1-dev | Maintained | 基于vLLM v0.9.1版本CI看护 | | v0.11.0-dev | Maintained | 基于vLLM v0.11.0版本CI看护 | +| releases/v0.13.0 | Maintained | 基于vLLM v0.13.0版本CI看护 | |rfc/feature-name| Maintained | 为协作创建的[特性分支](https://docs.vllm.ai/projects/ascend/en/latest/community/versioning_policy.html#feature-branches) | 请参阅[版本策略](https://docs.vllm.ai/projects/ascend/en/latest/community/versioning_policy.html)了解更多详细信息。 diff --git a/docs/source/community/versioning_policy.md b/docs/source/community/versioning_policy.md index 7410f839..d2530983 100644 --- a/docs/source/community/versioning_policy.md +++ b/docs/source/community/versioning_policy.md @@ -110,7 +110,8 @@ Usually, each minor version of vLLM (such as 0.7) corresponds to a vLLM Ascend v | Branch | State | Note | | ---------- | ------------ | -------------------------------------------------------- | -| main | Maintained | CI commitment for vLLM main branch and vLLM 0.12.0 tag | +| main | Maintained | CI commitment for vLLM main branch and vLLM 0.13.0 tag | +| releases/v0.13.0 | Maintained | CI commitment for vLLM 0.13.0 version | | v0.11.0-dev| Maintained | CI commitment for vLLM 0.11.0 version | | v0.9.1-dev | Maintained | CI commitment for vLLM 0.9.1 version | | v0.7.3-dev | Maintained | CI commitment for vLLM 0.7.3 version |