Skip to content

Commit 73ff913

Browse files
authored
Update build1.yml
1 parent 99cfeb2 commit 73ff913

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

.github/workflows/build1.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
name: Build llama.cpp
2-
run: |
3-
mkdir -p build
4-
cd build
5-
cmake ..
6-
make
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)