Skip to content

Commit 866acd0

Browse files
committed
test
1 parent c59cce7 commit 866acd0

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/all_tests.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,22 @@ jobs:
6363
echo "has_docker_changes=false" >> $GITHUB_OUTPUT
6464
fi
6565
66-
cuda_tests:
67-
name: CUDA tests
68-
needs: check_docker_changes
69-
if: >-
70-
(github.event_name != 'workflow_dispatch' || inputs.platform == 'all' || inputs.platform == 'cuda') &&
71-
(github.event_name == 'push' || github.event_name == 'workflow_dispatch' || needs.check_docker_changes.outputs.has_docker_changes != 'true')
72-
uses: ./.github/workflows/all_tests_common.yml
73-
with:
74-
platform: cuda
66+
# cuda_tests:
67+
# name: CUDA tests
68+
# needs: check_docker_changes
69+
# if: >-
70+
# (github.event_name != 'workflow_dispatch' || inputs.platform == 'all' || inputs.platform == 'cuda') &&
71+
# (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || needs.check_docker_changes.outputs.has_docker_changes != 'true')
72+
# uses: ./.github/workflows/all_tests_common.yml
73+
# with:
74+
# platform: cuda
7575

76-
ascend_tests:
77-
name: Ascend tests
78-
if: github.event_name != 'workflow_dispatch' || inputs.platform == 'all' || inputs.platform == 'ascend'
79-
uses: ./.github/workflows/all_tests_common.yml
80-
with:
81-
platform: ascend
76+
# ascend_tests:
77+
# name: Ascend tests
78+
# if: github.event_name != 'workflow_dispatch' || inputs.platform == 'all' || inputs.platform == 'ascend'
79+
# uses: ./.github/workflows/all_tests_common.yml
80+
# with:
81+
# platform: ascend
8282

8383
metax_tests:
8484
name: MetaX tests
@@ -101,19 +101,19 @@ jobs:
101101
run: |
102102
failed=false
103103
104-
if [ "${{ needs.check_docker_changes.outputs.has_docker_changes }}" = "true" ]; then
105-
echo "⏭️ CUDA tests skipped - docker changes detected, handled by build_image_cuda workflow"
106-
elif [ "${{ needs.cuda_tests.result }}" != "success" ] && \
107-
[ "${{ needs.cuda_tests.result }}" != "skipped" ]; then
108-
echo "❌ CUDA tests failed"
109-
failed=true
110-
fi
104+
# if [ "${{ needs.check_docker_changes.outputs.has_docker_changes }}" = "true" ]; then
105+
# echo "⏭️ CUDA tests skipped - docker changes detected, handled by build_image_cuda workflow"
106+
# elif [ "${{ needs.cuda_tests.result }}" != "success" ] && \
107+
# [ "${{ needs.cuda_tests.result }}" != "skipped" ]; then
108+
# echo "❌ CUDA tests failed"
109+
# failed=true
110+
# fi
111111
112-
if [ "${{ needs.ascend_tests.result }}" != "success" ] && \
113-
[ "${{ needs.ascend_tests.result }}" != "skipped" ]; then
114-
echo "❌ Ascend tests failed"
115-
failed=true
116-
fi
112+
# if [ "${{ needs.ascend_tests.result }}" != "success" ] && \
113+
# [ "${{ needs.ascend_tests.result }}" != "skipped" ]; then
114+
# echo "❌ Ascend tests failed"
115+
# failed=true
116+
# fi
117117
118118
if [ "${{ needs.metax_tests.result }}" != "success" ] && \
119119
[ "${{ needs.metax_tests.result }}" != "skipped" ]; then

0 commit comments

Comments
 (0)