Skip to content

Commit bbab0f0

Browse files
committed
verbose
Signed-off-by: oliver könig <[email protected]>
1 parent d991d7f commit bbab0f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,16 +153,16 @@ jobs:
153153
154154
export MAX_JOBS=$([ "$MATRIX_CUDA_VERSION" == "129" ] && echo 1 || echo 2) NVCC_THREADS=2
155155
export FLASH_ATTENTION_FORCE_BUILD="TRUE"
156-
export FLASH_ATTENTION_FORCE_CXX11_ABI=${{ inputs.cxx11_abi}}
156+
export FLASH_ATTENTION_FORCE_CXX11_ABI=${{ inputs.cxx11-abi }}
157157
158-
if [ -d "build/temp.linux-x86_64-cpython-312" ]; then
159-
cd build/temp.linux-x86_64-cpython-312
160-
ninja
158+
if [ -d "build/temp.linux-x86_64-cpython-${MATRIX_PYTHON_VERSION}" ]; then
159+
cd build/temp.linux-x86_64-cpython-${MATRIX_PYTHON_VERSION}
160+
ninja -v
161161
fi
162162
163163
python setup.py bdist_wheel --dist-dir=dist
164164
165-
tmpname=cu${WHEEL_CUDA_VERSION}torch${MATRIX_TORCH_VERSION}cxx11abi${{ inputs.cxx11_abi }}
165+
tmpname=cu${WHEEL_CUDA_VERSION}torch${MATRIX_TORCH_VERSION}cxx11abi${{ inputs.cxx11-abi }}
166166
wheel_name=$(ls dist/*whl | xargs -n 1 basename | sed "s/-/+$tmpname-/2")
167167
ls dist/*whl |xargs -I {} mv {} dist/${wheel_name}
168168
echo "wheel_name=${wheel_name}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)