inference-x/.github/workflows/build.yml
Salka Elmadani ec36668cf5 Inference-X v1.0 — Universal AI Inference Engine
Better output from the same model. Fused computation, adaptive precision,
surgical expert loading. 305 KB, 19 backends, zero dependencies.

https://inference-x.com
2026-02-23 07:10:47 +00:00

43 lines
939 B
YAML

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make -j$(nproc)
- name: Verify binary
run: |
ls -la inference-x
file inference-x
du -h inference-x
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: inference-x-linux-x86_64
path: inference-x
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make -j$(sysctl -n hw.ncpu)
- name: Verify binary
run: |
ls -la inference-x
file inference-x
du -h inference-x
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: inference-x-macos-arm64
path: inference-x