diff --git a/.github/workflows/_e2e_nightly_single_node.yaml b/.github/workflows/_e2e_nightly_single_node.yaml index 03da7c9e..bae2043c 100644 --- a/.github/workflows/_e2e_nightly_single_node.yaml +++ b/.github/workflows/_e2e_nightly_single_node.yaml @@ -145,5 +145,6 @@ jobs: CONFIG_YAML_PATH: ${{ inputs.config_file_path }} working-directory: /vllm-workspace/vllm-ascend run: | + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc echo "Running YAML-driven test with config: ${{ inputs.config_file_path }}" pytest -sv tests/e2e/nightly/single_node/models/scripts/test_single_node.py diff --git a/.github/workflows/_e2e_nightly_single_node_models.yaml b/.github/workflows/_e2e_nightly_single_node_models.yaml index 2f9f9efe..c3b4199f 100644 --- a/.github/workflows/_e2e_nightly_single_node_models.yaml +++ b/.github/workflows/_e2e_nightly_single_node_models.yaml @@ -186,6 +186,7 @@ jobs: TORCH_NPU_VERSION: ${{ env.GHA_TORCH_NPU_VERSION }} run: | mkdir -p ./benchmarks/accuracy + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc echo "Received model_list: ${{ inputs.model_list }}" models=$(echo '${{ inputs.model_list }}' | jq -r '.[]') any_failure=0 diff --git a/.github/workflows/schedule_image_build_and_push.yaml b/.github/workflows/schedule_image_build_and_push.yaml index c0dbf8d1..e3c365b8 100644 --- a/.github/workflows/schedule_image_build_and_push.yaml +++ b/.github/workflows/schedule_image_build_and_push.yaml @@ -12,8 +12,8 @@ name: Image Build and Push on: schedule: - # UTC+8: 8am, 12pm, 16pm, 22pm - - cron: '0 0,4,8,14 * * *' + # UTC+8: 8am, 12pm, 16pm, 21pm + - cron: '0 0,4,8,13 * * *' push: tags: - 'v*' diff --git a/Dockerfile b/Dockerfile index f5c563fd..6752cb48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,5 +79,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"] diff --git a/Dockerfile.310p b/Dockerfile.310p index 11a32e63..0a77fedf 100644 --- a/Dockerfile.310p +++ b/Dockerfile.310p @@ -61,5 +61,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"] diff --git a/Dockerfile.310p.openEuler b/Dockerfile.310p.openEuler index d71c885c..a09e9741 100644 --- a/Dockerfile.310p.openEuler +++ b/Dockerfile.310p.openEuler @@ -57,5 +57,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib64/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"] diff --git a/Dockerfile.a3 b/Dockerfile.a3 index e9bf3a24..25b5617d 100644 --- a/Dockerfile.a3 +++ b/Dockerfile.a3 @@ -78,5 +78,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"] diff --git a/Dockerfile.a3.openEuler b/Dockerfile.a3.openEuler index 39509407..526701b1 100644 --- a/Dockerfile.a3.openEuler +++ b/Dockerfile.a3.openEuler @@ -76,5 +76,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib64/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"] diff --git a/Dockerfile.openEuler b/Dockerfile.openEuler index 35437865..5d446ac9 100644 --- a/Dockerfile.openEuler +++ b/Dockerfile.openEuler @@ -76,5 +76,6 @@ RUN python3 -m pip install modelscope 'ray>=2.47.1,<=2.48.0' 'protobuf>3.20.0' & python3 -m pip cache purge RUN echo "export LD_PRELOAD=/usr/lib64/libjemalloc.so.2:$LD_PRELOAD" >> ~/.bashrc +RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib" >> ~/.bashrc CMD ["/bin/bash"]