This commit is contained in:
dante
2025-08-11 19:43:38 -04:00
parent 74b061e370
commit b88ef73b8c
2 changed files with 12 additions and 2 deletions

View File

@@ -62,6 +62,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- name: Build
run: cargo build --verbose
@@ -82,6 +84,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- name: Docs
run: cargo doc --verbose
@@ -102,6 +106,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- uses: baptiste0928/cargo-install@91c5da15570085bcde6f4d7aed98cb82d6769fd3 #v3.3.0
with:
crate: cargo-nextest
@@ -214,6 +220,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- uses: baptiste0928/cargo-install@91c5da15570085bcde6f4d7aed98cb82d6769fd3 #v3.3.0
with:
crate: cargo-nextest
@@ -243,6 +251,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- uses: jetli/wasm-pack-action@0d096b08b4e5a7de8c28de67e11e945404e9eefa #v0.4.0
with:
# Pin to version 0.12.1
@@ -701,6 +711,8 @@ jobs:
components: rustfmt, clippy
- name: install libc6
run: sudo apt-get install -y libc6
- name: Install cmake and build dependencies
run: sudo apt-get install -y cmake build-essential g++ gcc libclang-dev llvm-dev libstdc++-12-dev
- uses: baptiste0928/cargo-install@91c5da15570085bcde6f4d7aed98cb82d6769fd3 #v3.3.0
with:
crate: cargo-nextest

View File

@@ -107,8 +107,6 @@ uuid = { version = "1.10.0", features = ["v4"], optional = true }
icicle-runtime = { git = "https://github.com/ingonyama-zk/icicle", branch="emir/gate_eval_2", package="icicle-runtime" }
[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dependencies]
colored = { version = "2.0.0", default-features = false, optional = true }
env_logger = { version = "0.10.0", default-features = false, optional = true }