Skip to content

Commit 4f89014

Browse files
authored
ci: Increase compilation task time limit (#4098)
* ci: Increase compilation task time limit * update * update * rename * update * update
1 parent e79a1a7 commit 4f89014

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

.github/workflows/_build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ on:
5555
jobs:
5656
fd-build:
5757
runs-on: [self-hosted, GPU-Build]
58-
timeout-minutes: 240
58+
timeout-minutes: 360
5959
outputs:
6060
wheel_path: ${{ steps.set_output.outputs.wheel_path }}
6161
steps:

.github/workflows/_ci_image_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
outputs:
3030
docker_name_precheck: ${{ steps.docker_build.outputs.docker_name_precheck }}
3131
steps:
32-
- name: Code Prepare
32+
- name: Docker Build
3333
id: docker_build
3434
shell: bash
3535
env:

.github/workflows/_unit_test_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
run_tests_with_coverage:
4343
runs-on: [self-hosted, GPU-h1z1-2Cards]
44-
timeout-minutes: 60
44+
timeout-minutes: 90
4545
needs: check_cov_skip
4646
if: needs.check_cov_skip.outputs.can-skip != 'true'
4747
outputs:

tools/dockerfile/Dockerfile.ci

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddleqa:cuda126-py310-cibase
22
RUN apt update && apt install -y jq
3+
RUN python -m pip install --no-cache-dir xgrammar==0.1.19 torch==2.6.0 -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
34
COPY ../../requirements.txt ./requirements.txt
4-
RUN python -m pip install -r requirements.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple && python -m pip install pytest
5+
RUN python -m pip install --no-cache-dir -r requirements.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
56
COPY ./unittest_requirement.txt ./unittest_requirement.txt
6-
RUN python -m pip install -r unittest_requirement.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
7+
RUN python -m pip install --no-cache-dir -r unittest_requirement.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
8+
COPY ./requirements_paddle_nv.txt ./requirements_paddle_nv.txt
9+
RUN python -m pip install --no-cache-dir -r requirements_paddle_nv.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == 'Linux' and platform_machine == 'x86_64'
2+
nvidia-cuda-runtime-cu12==12.6.77; platform_system == 'Linux' and platform_machine == 'x86_64'
3+
nvidia-cuda-cupti-cu12==12.6.80; platform_system == 'Linux' and platform_machine == 'x86_64'
4+
nvidia-cudnn-cu12==9.5.1.17; platform_system == 'Linux' and platform_machine == 'x86_64'
5+
nvidia-cublas-cu12==12.6.4.1; platform_system == 'Linux' and platform_machine == 'x86_64'
6+
nvidia-cufft-cu12==11.3.0.4; platform_system == 'Linux' and platform_machine == 'x86_64'
7+
nvidia-curand-cu12==10.3.7.77; platform_system == 'Linux' and platform_machine == 'x86_64'
8+
nvidia-cusolver-cu12==11.7.1.2; platform_system == 'Linux' and platform_machine == 'x86_64'
9+
nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' and platform_machine == 'x86_64'
10+
nvidia-cusparselt-cu12==0.6.3; platform_system == 'Linux' and platform_machine == 'x86_64'
11+
nvidia-nccl-cu12==2.25.1; platform_system == 'Linux' and platform_machine == 'x86_64'
12+
nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' and platform_machine == 'x86_64'
13+
nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' and platform_machine == 'x86_64'
14+
nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux' and platform_machine == 'x86_64'

0 commit comments

Comments
 (0)