Skip to content

Commit 8c90757

Browse files
committed
skip ut, nightly, v0.11.0
Signed-off-by: leo-pony <[email protected]>
1 parent 50fecd8 commit 8c90757

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

.github/workflows/_e2e_nightly_multi_node.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ concurrency:
6666
jobs:
6767
e2e:
6868
name: ${{ inputs.config_file_path }}
69+
if: false
6970
# This is the runner with no NPU for k8s controller
7071
runs-on: ${{ inputs.runner }}
7172
container:

.github/workflows/_e2e_nightly_single_node.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ concurrency:
5252

5353
jobs:
5454
e2e-nightly:
55+
if: false
5556
name: ${{ inputs.tests }}
5657
runs-on: ${{ inputs.runner }}
5758
container:

.github/workflows/vllm_ascend_test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ jobs:
7272
ut:
7373
needs: [lint, changes]
7474
name: unit test
75+
if: false # 直接禁用
7576
# only trigger unit test after lint passed and the change is e2e and ut related.
76-
if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
77+
# if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
7778
runs-on: ubuntu-latest
7879
container:
7980
# fixme: vllm-ascend install failed with 8.3.rc1 on github action
@@ -136,6 +137,7 @@ jobs:
136137

137138
e2e-light:
138139
name: e2e-light
140+
if: false # 直接禁用
139141
strategy:
140142
matrix:
141143
vllm_version: [releases/v0.11.1, v0.11.0]

.github/workflows/vllm_ascend_test_full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
name: e2e-full
7070
strategy:
7171
matrix:
72-
vllm_version: [releases/v0.11.1, v0.11.0]
72+
vllm_version: [releases/v0.11.1]
7373
needs: [changes]
7474
if: ${{ needs.changes.outputs.e2e_tracker == 'true' }}
7575
uses: ./.github/workflows/_e2e_test.yaml

.github/workflows/vllm_ascend_test_nightly_a2.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ concurrency:
4444
jobs:
4545
image_build:
4646
name: nightly image build
47+
if: false
4748
uses: ./.github/workflows/_nightly_image_build.yaml
4849
with:
4950
target: a2
@@ -52,7 +53,8 @@ jobs:
5253
HW_TOKEN: ${{ secrets.HW_TOKEN }}
5354
single-node-tests:
5455
name: single-node
55-
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
56+
if: false
57+
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
5658
needs: image_build
5759
strategy:
5860
fail-fast: false
@@ -77,7 +79,8 @@ jobs:
7779
multi-node-tests:
7880
name: multi-node
7981
needs: [single-node-tests, image_build]
80-
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
82+
if: false
83+
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
8184
strategy:
8285
fail-fast: false
8386
max-parallel: 1
@@ -101,6 +104,7 @@ jobs:
101104
KUBECONFIG_B64: ${{ secrets.KUBECONFIG_A2_B64 }}
102105

103106
single-node-accuracy-tests:
107+
if: false
104108
if: >-
105109
${{
106110
github.event_name == 'schedule' ||

.github/workflows/vllm_ascend_test_nightly_a3.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ concurrency:
4343
jobs:
4444
image_build:
4545
name: nightly image build
46+
if: false
4647
uses: ./.github/workflows/_nightly_image_build.yaml
4748
with:
4849
target: a3
@@ -51,7 +52,8 @@ jobs:
5152
HW_TOKEN: ${{ secrets.HW_TOKEN }}
5253
single-node-tests:
5354
name: single-node
54-
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
55+
if: false
56+
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
5557
needs: image_build
5658
strategy:
5759
fail-fast: false
@@ -109,8 +111,9 @@ jobs:
109111

110112
multi-node-tests:
111113
name: multi-node
114+
if: false
112115
needs: [single-node-tests, image_build]
113-
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
116+
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
114117
strategy:
115118
fail-fast: false
116119
max-parallel: 1

0 commit comments

Comments
 (0)