diff --git a/.github/workflows/workflow_finetune.yml b/.github/workflows/workflow_finetune.yml index e993011cb..9650ebfad 100644 --- a/.github/workflows/workflow_finetune.yml +++ b/.github/workflows/workflow_finetune.yml @@ -11,10 +11,10 @@ on: default: '10.1.2.13:5000/llmray-build' http_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' https_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' runner_config_path: type: string default: '/home/ci/llm-ray-actions-runner' diff --git a/.github/workflows/workflow_finetune_gpu.yml b/.github/workflows/workflow_finetune_gpu.yml index 37e612324..fb1ec9103 100644 --- a/.github/workflows/workflow_finetune_gpu.yml +++ b/.github/workflows/workflow_finetune_gpu.yml @@ -8,10 +8,10 @@ on: default: '10.1.2.13:5000/llmray-build' http_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' https_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' jobs: finetune-gpu: diff --git a/.github/workflows/workflow_inference.yml b/.github/workflows/workflow_inference.yml index ca57affac..ed2266840 100644 --- a/.github/workflows/workflow_inference.yml +++ b/.github/workflows/workflow_inference.yml @@ -11,10 +11,10 @@ on: default: '10.1.2.13:5000/llmray-build' http_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' https_proxy: type: string - default: 'http://10.24.221.169:912' + default: 'http://proxy-prc.intel.com:912' runner_config_path: type: string default: '/home/ci/llm-ray-actions-runner' diff --git a/.github/workflows/workflow_orders_nightly.yml b/.github/workflows/workflow_orders_nightly.yml index dc9f008cf..025dcbe58 100644 --- a/.github/workflows/workflow_orders_nightly.yml +++ b/.github/workflows/workflow_orders_nightly.yml @@ -1,8 +1,8 @@ name: Nightly -on: - schedule: - - cron: "0 16 * * *" +on: [] + # schedule: + # - cron: "0 16 * * *" jobs: diff --git a/.github/workflows/workflow_orders_on_merge.yml b/.github/workflows/workflow_orders_on_merge.yml index 0ca6f4410..632f880b8 100644 --- a/.github/workflows/workflow_orders_on_merge.yml +++ b/.github/workflows/workflow_orders_on_merge.yml @@ -16,18 +16,18 @@ jobs: needs: Lint uses: ./.github/workflows/workflow_tests.yml - Inference: - needs: Lint - uses: ./.github/workflows/workflow_inference.yml + # Inference: + # needs: Lint + # uses: ./.github/workflows/workflow_inference.yml - Inference_Gaudi: - needs: Lint - uses: ./.github/workflows/workflow_inference_gaudi2.yml + # Inference_Gaudi: + # needs: Lint + # uses: ./.github/workflows/workflow_inference_gaudi2.yml - Finetune: - needs: Lint - uses: ./.github/workflows/workflow_finetune.yml + # Finetune: + # needs: Lint + # uses: ./.github/workflows/workflow_finetune.yml - Benchmark: - needs: Lint - uses: ./.github/workflows/workflow_test_benchmark.yml + # Benchmark: + # needs: Lint + # uses: ./.github/workflows/workflow_test_benchmark.yml diff --git a/.github/workflows/workflow_orders_on_pr.yml b/.github/workflows/workflow_orders_on_pr.yml index acec72a6d..cac4bfacc 100644 --- a/.github/workflows/workflow_orders_on_pr.yml +++ b/.github/workflows/workflow_orders_on_pr.yml @@ -16,14 +16,14 @@ jobs: needs: Lint uses: ./.github/workflows/workflow_tests.yml - Inference: - needs: Lint - uses: ./.github/workflows/workflow_inference.yml + # Inference: + # needs: Lint + # uses: ./.github/workflows/workflow_inference.yml - Inference_Gaudi: - needs: Lint - uses: ./.github/workflows/workflow_inference_gaudi2.yml + # Inference_Gaudi: + # needs: Lint + # uses: ./.github/workflows/workflow_inference_gaudi2.yml - Finetune: - needs: Lint - uses: ./.github/workflows/workflow_finetune.yml + # Finetune: + # needs: Lint + # uses: ./.github/workflows/workflow_finetune.yml diff --git a/dev/docker/Dockerfile.cpu_and_deepspeed b/dev/docker/Dockerfile.cpu_and_deepspeed index e6bbe2401..d4320a416 100644 --- a/dev/docker/Dockerfile.cpu_and_deepspeed +++ b/dev/docker/Dockerfile.cpu_and_deepspeed @@ -2,6 +2,7 @@ FROM ubuntu:22.04 ENV LANG C.UTF-8 +ENV HF_ENDPOINT "https://hf-mirror.com" WORKDIR /root/llm-on-ray diff --git a/dev/docker/Dockerfile.cpu_and_deepspeed.pip_non_editable b/dev/docker/Dockerfile.cpu_and_deepspeed.pip_non_editable index 8bb3b047b..1f4da7e97 100644 --- a/dev/docker/Dockerfile.cpu_and_deepspeed.pip_non_editable +++ b/dev/docker/Dockerfile.cpu_and_deepspeed.pip_non_editable @@ -2,6 +2,7 @@ FROM ubuntu:22.04 ENV LANG C.UTF-8 +ENV HF_ENDPOINT "https://hf-mirror.com" WORKDIR /root/llm-on-ray diff --git a/dev/docker/Dockerfile.ipex-llm b/dev/docker/Dockerfile.ipex-llm index 5b52353ba..07c6b971f 100644 --- a/dev/docker/Dockerfile.ipex-llm +++ b/dev/docker/Dockerfile.ipex-llm @@ -2,6 +2,7 @@ FROM ubuntu:22.04 ENV LANG C.UTF-8 +ENV HF_ENDPOINT "https://hf-mirror.com" WORKDIR /root/llm-on-ray diff --git a/dev/docker/Dockerfile.vllm b/dev/docker/Dockerfile.vllm index 04563d9bd..c4abc0671 100644 --- a/dev/docker/Dockerfile.vllm +++ b/dev/docker/Dockerfile.vllm @@ -2,6 +2,7 @@ FROM ubuntu:22.04 ENV LANG C.UTF-8 +ENV HF_ENDPOINT "https://hf-mirror.com" WORKDIR /root/llm-on-ray diff --git a/dev/scripts/ci-functions.sh b/dev/scripts/ci-functions.sh index 738154fd8..2240a4444 100644 --- a/dev/scripts/ci-functions.sh +++ b/dev/scripts/ci-functions.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash set -eo pipefail -HTTP_PROXY='http://10.24.221.169:912' -HTTPS_PROXY='http://10.24.221.169:912' +HTTP_PROXY='http://proxy-prc.intel.com:912' +HTTPS_PROXY='http://proxy-prc.intel.com:912' MODEL_CACHE_PATH_LOACL='/root/.cache/huggingface/hub' CODE_CHECKOUT_PATH_LOCAL='/root/llm-on-ray'