-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.48 KB
/
Copy pathcmake.yml
File metadata and controls
60 lines (51 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: BasicallyLinux Build Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Compile Kernel
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Toolchain
run: |
sudo apt-get update
sudo apt-get install -y \
nasm \
make \
binutils-i686-linux-gnu \
gcc-i686-linux-gnu \
libgcc-s1-i386-cross \
wget
- name: Cache AI Model
id: cache-model
uses: actions/cache@v4
with:
path: assets/smollm2.gguf
key: ${{ runner.os }}-model-smollm2
- name: Download AI Model Asset
if: steps.cache-model.outputs.cache-hit != 'true'
run: |
mkdir -p assets
wget -O assets/smollm2.gguf https://huggingface.co/bartowski/SmolLM2-135M-Instruct-GGUF/resolve/main/SmolLM2-135M-Instruct-Q4_K_M.gguf
- name: Configure CMake
run: |
cmake -B build \
-DCMAKE_C_COMPILER=i686-linux-gnu-gcc \
-DCMAKE_ASM_NASM_COMPILER=nasm \
-DCMAKE_BUILD_TYPE=Release
- name: Build BasicallyLinux
run: |
cmake --build build
- name: Archive Artifacts
if: success()
uses: actions/upload-artifact@v4
with:
name: basicallylinux-alpha
path: |
build/kernel.bin
assets/smollm2.gguf