Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit e1b0418

Browse files
authored
Merge branch 'intel:main' into fix-fine-tuning-bugs
2 parents 3ff4f88 + df24aa2 commit e1b0418

11 files changed

+36
-32
lines changed

.github/workflows/workflow_finetune.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ on:
1111
default: '10.1.2.13:5000/llmray-build'
1212
http_proxy:
1313
type: string
14-
default: 'http://10.24.221.169:912'
14+
default: 'http://proxy-prc.intel.com:912'
1515
https_proxy:
1616
type: string
17-
default: 'http://10.24.221.169:912'
17+
default: 'http://proxy-prc.intel.com:912'
1818
runner_config_path:
1919
type: string
2020
default: '/home/ci/llm-ray-actions-runner'

.github/workflows/workflow_finetune_gpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
default: '10.1.2.13:5000/llmray-build'
99
http_proxy:
1010
type: string
11-
default: 'http://10.24.221.169:912'
11+
default: 'http://proxy-prc.intel.com:912'
1212
https_proxy:
1313
type: string
14-
default: 'http://10.24.221.169:912'
14+
default: 'http://proxy-prc.intel.com:912'
1515

1616
jobs:
1717
finetune-gpu:

.github/workflows/workflow_inference.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ on:
1111
default: '10.1.2.13:5000/llmray-build'
1212
http_proxy:
1313
type: string
14-
default: 'http://10.24.221.169:912'
14+
default: 'http://proxy-prc.intel.com:912'
1515
https_proxy:
1616
type: string
17-
default: 'http://10.24.221.169:912'
17+
default: 'http://proxy-prc.intel.com:912'
1818
runner_config_path:
1919
type: string
2020
default: '/home/ci/llm-ray-actions-runner'

.github/workflows/workflow_orders_nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Nightly
22

3-
on:
4-
schedule:
5-
- cron: "0 16 * * *"
3+
on: []
4+
# schedule:
5+
# - cron: "0 16 * * *"
66

77
jobs:
88

.github/workflows/workflow_orders_on_merge.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
needs: Lint
1717
uses: ./.github/workflows/workflow_tests.yml
1818

19-
Inference:
20-
needs: Lint
21-
uses: ./.github/workflows/workflow_inference.yml
19+
# Inference:
20+
# needs: Lint
21+
# uses: ./.github/workflows/workflow_inference.yml
2222

23-
Inference_Gaudi:
24-
needs: Lint
25-
uses: ./.github/workflows/workflow_inference_gaudi2.yml
23+
# Inference_Gaudi:
24+
# needs: Lint
25+
# uses: ./.github/workflows/workflow_inference_gaudi2.yml
2626

27-
Finetune:
28-
needs: Lint
29-
uses: ./.github/workflows/workflow_finetune.yml
27+
# Finetune:
28+
# needs: Lint
29+
# uses: ./.github/workflows/workflow_finetune.yml
3030

31-
Benchmark:
32-
needs: Lint
33-
uses: ./.github/workflows/workflow_test_benchmark.yml
31+
# Benchmark:
32+
# needs: Lint
33+
# uses: ./.github/workflows/workflow_test_benchmark.yml

.github/workflows/workflow_orders_on_pr.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
needs: Lint
1717
uses: ./.github/workflows/workflow_tests.yml
1818

19-
Inference:
20-
needs: Lint
21-
uses: ./.github/workflows/workflow_inference.yml
19+
# Inference:
20+
# needs: Lint
21+
# uses: ./.github/workflows/workflow_inference.yml
2222

23-
Inference_Gaudi:
24-
needs: Lint
25-
uses: ./.github/workflows/workflow_inference_gaudi2.yml
23+
# Inference_Gaudi:
24+
# needs: Lint
25+
# uses: ./.github/workflows/workflow_inference_gaudi2.yml
2626

27-
Finetune:
28-
needs: Lint
29-
uses: ./.github/workflows/workflow_finetune.yml
27+
# Finetune:
28+
# needs: Lint
29+
# uses: ./.github/workflows/workflow_finetune.yml

dev/docker/Dockerfile.cpu_and_deepspeed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
FROM ubuntu:22.04
33

44
ENV LANG C.UTF-8
5+
ENV HF_ENDPOINT "https://hf-mirror.com"
56

67
WORKDIR /root/llm-on-ray
78

dev/docker/Dockerfile.cpu_and_deepspeed.pip_non_editable

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
FROM ubuntu:22.04
33

44
ENV LANG C.UTF-8
5+
ENV HF_ENDPOINT "https://hf-mirror.com"
56

67
WORKDIR /root/llm-on-ray
78

dev/docker/Dockerfile.ipex-llm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
FROM ubuntu:22.04
33

44
ENV LANG C.UTF-8
5+
ENV HF_ENDPOINT "https://hf-mirror.com"
56

67
WORKDIR /root/llm-on-ray
78

dev/docker/Dockerfile.vllm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
FROM ubuntu:22.04
33

44
ENV LANG C.UTF-8
5+
ENV HF_ENDPOINT "https://hf-mirror.com"
56

67
WORKDIR /root/llm-on-ray
78

0 commit comments

Comments
 (0)