File tree Expand file tree Collapse file tree 1 file changed +18
-23
lines changed Expand file tree Collapse file tree 1 file changed +18
-23
lines changed Original file line number Diff line number Diff line change 1- name : EditorConfig Checker
1+ name : Build llama.cpp
22
33on :
4- workflow_dispatch : # allows manual triggering
5- inputs :
6- create_release :
7- description : ' Create new release'
8- required : true
9- type : boolean
10- push :
11- branches :
12- - master
13- pull_request :
14- branches :
15- - master
16-
17- concurrency :
18- group : ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
19- cancel-in-progress : true
4+ workflow_dispatch : # يسمح لك بتشغيله يدويًا من GitHub Actions
205
216jobs :
22- editorconfig :
7+ build :
238 runs-on : ubuntu-latest
9+
2410 steps :
25- - uses : actions/checkout@v4
26- - uses : editorconfig-checker/action-editorconfig-checker@v2
27- with :
28- version : v3.0.3
29- - run : editorconfig-checker
11+ - name : 🔄 استنساخ المستودع
12+ uses : actions/checkout@v3
13+
14+ - name : 🛠️ تثبيت المتطلبات
15+ run : |
16+ sudo apt update
17+ sudo apt install -y cmake build-essential
18+
19+ - name : ⚙️ بناء المشروع
20+ run : |
21+ mkdir -p build
22+ cd build
23+ cmake ..
24+ make
You can’t perform that action at this time.
0 commit comments