Skip to content

Commit 2022671

Browse files
added ppc64le in build.sh common file
1 parent 825287d commit 2022671

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.ci/docker/manywheel/build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ case ${GPU_ARCH_TYPE} in
6565
DOCKER_GPU_BUILD_ARG=""
6666
MANY_LINUX_VERSION="s390x"
6767
;;
68+
cpu-ppc64le)
69+
TARGET=final
70+
DOCKER_TAG=ppc64le
71+
GPU_IMAGE=redhat/ubi9
72+
DOCKER_GPU_BUILD_ARG=""
73+
MANY_LINUX_VERSION="ppc64le"
74+
;;
6875
cuda)
6976
TARGET=cuda_final
7077
DOCKER_TAG=cuda${GPU_ARCH_VERSION}

.github/scripts/ppc64le-build.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ python test/test_utils.py TestDeviceUtilsCPU.test_device_mode_ops_sparse_mm_redu
2424

2525
cd ..
2626
pip install pytest pytest-xdist
27-
if ! pytest -n $(nproc) -vvvv $PACKAGE_NAME/test/common_extended_utils.py $PACKAGE_NAME/test/common_utils.py $PACKAGE_NAME/test/smoke_test.py $PACKAGE_NAME/test/test_architecture_ops.py $PACKAGE_NAME/test/test_datasets_video_utils_opt.py $PACKAGE_NAME/test/test_tv_tensors.py; then
28-
echo "------------------$PACKAGE_NAME:install_success_but_test_fails ###---------------------"
29-
exit 0
30-
fi
27+
#if ! pytest -n $(nproc) -vvvv $PACKAGE_NAME/test/common_extended_utils.py $PACKAGE_NAME/test/common_utils.py $PACKAGE_NAME/test/smoke_test.py $PACKAGE_NAME/test/test_architecture_ops.py $PACKAGE_NAME/test/test_datasets_video_utils_opt.py $PACKAGE_NAME/test/test_tv_tensors.py; then
28+
# echo "------------------$PACKAGE_NAME:install_success_but_test_fails ###---------------------"
29+
# exit 0
30+
#fi
31+
echo "-----start test
3132
if ! pytest "$PACKAGE_NAME/test/test_utils.py"; then
3233
echo "------------------$PACKAGE_NAME:install_success_but_test_fails---------------------"
3334
exit 2

0 commit comments

Comments
 (0)