no work dir

This commit is contained in:
Tianlei Wu 2025-01-31 00:00:11 +00:00
parent 7c64bcc86e
commit 949e1c537f
2 changed files with 1 additions and 2 deletions

View file

@ -225,7 +225,6 @@ jobs:
-e KERNEL_EXPLORER_BATCHED_GEMM_MAX_BATCH_SIZE=8 \
-e KERNEL_EXPLORER_TEST_USE_CUPY=0 \
-e CUPY_CACHE_DIR=/build/Release \
--workdir /ort \
onnxruntime-rocm-cibuild-rocm$(RocmVersion) \
/bin/bash -c "
set -ex; \

View file

@ -81,7 +81,6 @@ RUN mkdir -p /tmp/ccache && \
rm -rf /tmp/ccache
# Set up virtual environment for Python and install dependencies
WORKDIR /ort
COPY scripts/requirements.txt /ort/
RUN python3 -m venv ${VIRTUAL_ENV} && \
source ${VIRTUAL_ENV}/bin/activate && \
@ -89,5 +88,6 @@ RUN python3 -m venv ${VIRTUAL_ENV} && \
pip install -r /ort/requirements.txt && \
pip install ml_dtypes pytest-xdist pytest-rerunfailures scipy
# Default command
CMD ["/bin/bash"]