Skip to content

Commit b64f304

Browse files
authored
Create main.yml
1 parent c0ad228 commit b64f304

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build llama.cpp
2+
3+
on:
4+
workflow_dispatch: # يسمح لك بتشغيله يدويًا من GitHub Actions
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
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

0 commit comments

Comments
 (0)