Skip to content

Commit 91f8ef5

Browse files
authored
Create Issa.yml
1 parent 4910e23 commit 91f8ef5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/Issa.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build llama.cpp
2+
3+
on:
4+
workflow_dispatch:
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
25+
26+
- name: ✅ عرض نتيجة البناء
27+
run: ls -la build

0 commit comments

Comments
 (0)