File tree Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 55
55
jobs :
56
56
fd-build :
57
57
runs-on : [self-hosted, GPU-Build]
58
- timeout-minutes : 240
58
+ timeout-minutes : 360
59
59
outputs :
60
60
wheel_path : ${{ steps.set_output.outputs.wheel_path }}
61
61
steps :
Original file line number Diff line number Diff line change 29
29
outputs :
30
30
docker_name_precheck : ${{ steps.docker_build.outputs.docker_name_precheck }}
31
31
steps :
32
- - name : Code Prepare
32
+ - name : Docker Build
33
33
id : docker_build
34
34
shell : bash
35
35
env :
Original file line number Diff line number Diff line change 41
41
42
42
run_tests_with_coverage :
43
43
runs-on : [self-hosted, GPU-h1z1-2Cards]
44
- timeout-minutes : 60
44
+ timeout-minutes : 90
45
45
needs : check_cov_skip
46
46
if : needs.check_cov_skip.outputs.can-skip != 'true'
47
47
outputs :
Original file line number Diff line number Diff line change 1
1
FROM ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddleqa:cuda126-py310-cibase
2
2
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
3
4
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
5
6
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
Original file line number Diff line number Diff line change
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'
You can’t perform that action at this time.
0 commit comments