File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,6 @@ jobs:
111111
112112 - name : Build cuda.core wheel
113113 uses : pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
114- env :
115- CIBW_BUILD : ${{ env.CIBW_BUILD }}
116114 with :
117115 package-dir : ./cuda_core/
118116 output-dir : ${{ env.CUDA_CORE_ARTIFACTS_DIR }}
@@ -147,8 +145,6 @@ jobs:
147145
148146 - name : Build cuda.bindings wheel
149147 uses : pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
150- env :
151- CIBW_BUILD : ${{ env.CIBW_BUILD }}
152148 with :
153149 package-dir : ./cuda_bindings/
154150 output-dir : ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
Original file line number Diff line number Diff line change 1717
1818PYTHON_VERSION_FORMATTED=$( echo " ${PY_VER} " | tr -d ' .' )
1919
20- # platform is handled by the default value of platform (`auto`) in cibuildwheel
21- # here we only need to specify the python version we want
22- CIBW_BUILD=" cp${PYTHON_VERSION_FORMATTED} -*"
23-
2420if [[ " ${HOST_PLATFORM} " == linux* ]]; then
2521 REPO_DIR=$( pwd)
2622 TOOLS_PATH=" ${REPO_DIR} /ci/tools"
@@ -42,7 +38,9 @@ CUDA_CORE_ARTIFACT_BASENAME="cuda-core-python${PYTHON_VERSION_FORMATTED}-${HOST_
4238} >> $GITHUB_ENV
4339
4440if [[ " ${1} " == " build" ]]; then
45- echo " CIBW_BUILD=${CIBW_BUILD} " >> $GITHUB_ENV
41+ # platform is handled by the default value of platform (`auto`) in cibuildwheel
42+ # here we only need to specify the python version we want
43+ echo " CIBW_BUILD=cp${PYTHON_VERSION_FORMATTED} -*" >> $GITHUB_ENV
4644 CUDA_BINDINGS_ARTIFACT_BASENAME=" cuda-bindings-python${PYTHON_VERSION_FORMATTED} -cuda${CUDA_VER} -${HOST_PLATFORM} "
4745elif [[ " ${1} " == " test" ]]; then
4846 BUILD_CUDA_MAJOR=" $( cut -d ' .' -f 1 <<< ${BUILD_CUDA_VER} ) "
You can’t perform that action at this time.
0 commit comments