Skip to content

Commit 7526bc1

Browse files
committed
Add more debugging information for Travis
Co-authored by: nijincheng@iscas.ac.cn;
1 parent 922da5c commit 7526bc1

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.travis.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,21 @@ jobs:
3636

3737
install:
3838
# Maybe get and clean and patch source
39-
- |
40-
python3 -m pip install cibuildwheel==3.2.1
41-
python3 -m cibuildwheel --help # make sure it is installed correctly
42-
echo done install step
39+
- pip install cibuildwheel==3.2.1 -v
40+
- which cibuildwheel
41+
- cibuildwheel --help # make sure it is installed correctly
42+
- echo done install step
4343

4444
script:
45-
- |
46-
export CIBW_BUILD="cp39-manylinux_${PLAT}"
47-
export CIBW_MANYLINUX_S390X_IMAGE="manylinux${MB_ML_VER}"
48-
export CIBW_MANYLINUX_PPC64LE_IMAGE="manylinux${MB_ML_VER}"
45+
- CIBW_BUILD="cp39-manylinux_${PLAT}"
46+
- CIBW_MANYLINUX_S390X_IMAGE="manylinux${MB_ML_VER}"
47+
- CIBW_MANYLINUX_PPC64LE_IMAGE="manylinux${MB_ML_VER}"
48+
49+
- echo "Building for PLAT=${PLAT}, INTERFACE64=${INTERFACE64}, MB_ML_VER=${MB_ML_VER}, CIBW_BUILD=${CIBW_BUILD}, CIBW_MANYLINUX_S390X_IMAGE=${CIBW_MANYLINUX_S390X_IMAGE}, CIBW_MANYLINUX_PPC64LE_IMAGE=${CIBW_MANYLINUX_PPC64LE_IMAGE}"
4950

50-
python3 -m cibuildwheel --print-build-identifiers
51+
- cibuildwheel --print-build-identifiers
5152

52-
python3 -m cibuildwheel --output-dir dist
53+
- cibuildwheel --output-dir dist
5354

5455
after_success:
5556
- set +ex

0 commit comments

Comments
 (0)