-
Notifications
You must be signed in to change notification settings - Fork 162
43 lines (37 loc) · 971 Bytes
/
python.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: python
on:
push:
branches:
- master
- 'feature/**'
paths:
- 'src/**'
- 'python/**'
- '.github/workflows/python.yml'
pull_request:
branches: [master]
paths:
- 'src/**'
- 'python/**'
- '.github/workflows/python.yml'
jobs:
build:
name: python-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: s-weigand/setup-conda@v1
- name: build
run: ./script/py_build.sh
- name: download_mode
run: |
wget -c -nv https://github.com/wangzhaode/mnn-llm/releases/download/qwen1.5-0.5b-chat-mnn/Qwen1.5-0.5B-Chat-MNN.zip
unzip Qwen1.5-0.5B-Chat-MNN.zip
- name: test_model
run: |
conda install -c conda-forge gcc=12.1.0
cd python
pip install dist/*.whl
python test.py ../Qwen1.5-0.5B-Chat-MNN/config.json