File tree Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ concurrency:
6666jobs :
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 :
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ concurrency:
5252
5353jobs :
5454 e2e-nightly :
55+ if : false
5556 name : ${{ inputs.tests }}
5657 runs-on : ${{ inputs.runner }}
5758 container :
Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ concurrency:
4444jobs :
4545 image_build :
4646 name : nightly image build
47+ if : false
4748 uses : ./.github/workflows/_nightly_image_build.yaml
4849 with :
4950 target : a2
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
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' ||
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ concurrency:
4343jobs :
4444 image_build :
4545 name : nightly image build
46+ if : false
4647 uses : ./.github/workflows/_nightly_image_build.yaml
4748 with :
4849 target : a3
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
You can’t perform that action at this time.
0 commit comments