Skip to content

Commit

Permalink
Add more build targets and types
Browse files Browse the repository at this point in the history
  • Loading branch information
jpopesculian committed Mar 14, 2024
1 parent 27c0edf commit 9df7176
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64] # x86, aarch64, armv7, s390x, ppc64le]
target: [x86_64, x86, aarch64, armv7] # s390x, ppc64le
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [

[package]
name = "aqora"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
default-run = "aqora"
publish = false
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Getting Started

To install the CLI, you can run the following script:
To install the CLI, you can use pip:

```bash
curl -LsSf https://raw.githubusercontent.com/aqora-io/cli/main/install.py | python3
pip install aqora-cli
```

Or pipx

```bash
pipx install aqora-cli
```

To verify the installation, the following should output helpful information:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "aqora-cli"
version = "0.1.0"
version = "0.1.3"
description = "The aqora command line interface"
authors = [{ name = "S.A.S Aqora Quantum", email = "[email protected]" }]
requires-python = ">=3.8"
Expand Down
3 changes: 3 additions & 0 deletions src/module.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use crate::commands::Cli;
use aqora_runner::pipeline::{LayerEvaluation, PipelineConfig};
use clap::Parser;
use pyo3::prelude::*;

Expand All @@ -18,5 +19,7 @@ pub fn main(py: Python<'_>) -> PyResult<()> {
#[pymodule]
pub fn aqora_cli(_: Python<'_>, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(main, m)?)?;
m.add_class::<PipelineConfig>()?;
m.add_class::<LayerEvaluation>()?;
Ok(())
}

0 comments on commit 9df7176

Please sign in to comment.