We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f3a7be commit 7f2bf4dCopy full SHA for 7f2bf4d
.github/workflows/c-cpp.yml
@@ -1,23 +1,27 @@
1
-name: C/C++ CI
+name: Build llama.cpp
2
3
on:
4
- push:
5
- branches: [ "master" ]
6
- pull_request:
7
+ workflow_dispatch:
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v4
16
- - name: configure
17
- run: ./configure
18
- - name: make
19
- run: make
20
- - name: make check
21
- run: make check
22
- - name: make distcheck
23
- run: make distcheck
+ - name: 📥 استنساخ الكود
+ uses: actions/checkout@v3
+
+ - name: 🛠️ تثبيت المتطلبات
+ run: |
+ sudo apt update
+ sudo apt install -y cmake build-essential
+ - name: 🏗️ بناء المشروع
+ mkdir -p build
+ cd build
+ cmake ..
24
+ make
25
26
+ - name: ✅ عرض نتيجة البناء
27
+ run: ls -la build
0 commit comments