Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,21 @@ jobs:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: lisa
target: x86_64-unknown-linux-musl
artifact: lisa-linux-x86_64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: lisa.exe
artifact: lisa-windows-x86_64.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- name: Install musl tools (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y musl-tools
- run: cargo test
- run: cargo build --release --target ${{ matrix.target }}
- name: Rename binary (Linux)
Expand Down
8 changes: 7 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Build & Test Commands

```bash
cargo build # Build the project
cargo build # Build the project (dev, dynamically linked)
cargo test # Run all unit tests
cargo test <test_name> # Run a single test (e.g., cargo test test_parse_tasks)
cargo test <mod>::tests # Run all tests in a module (e.g., cargo test config::tests)
cargo clippy # Lint
cargo fmt # Format
cargo install --path . # Install the `lisa` binary

# Portable release build (statically linked, no glibc dependency):
rustup target add x86_64-unknown-linux-musl
sudo apt-get install -y musl-tools
cargo build --release --target x86_64-unknown-linux-musl
# Binary: target/x86_64-unknown-linux-musl/release/lisa
```

## What This Project Is
Expand Down
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lisa-loop"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
description = "Rigorous engineering problem-solving with AI agents"

Expand All @@ -18,3 +18,6 @@ crossterm = "0.28"
dialoguer = "0.11"
chrono = "0.4"
regex = "1"

[dev-dependencies]
tempfile = "3.27.0"
Loading
Loading