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
11 changes: 8 additions & 3 deletions .github/workflows/release-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,21 @@ jobs:
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
archive: libere_verifier_c.linux-arm64.tar.gz
- os: macos-latest
target: x86_64-apple-darwin
archive: libere_verifier_c.darwin-amd64.tar.gz
- os: macos-latest
target: aarch64-apple-darwin
archive: libere_verifier_c.darwin-arm64.tar.gz
steps:
- name: Checkout repository
uses: actions/checkout@v6

# Needed to build `proofman-starks-lib-c`, which is pulled by
# `proofman-fields` unconditionally on x86_64.
- name: Install build dependencies
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y nasm nlohmann-json3-dev libgmp-dev libsodium-dev libomp-dev libopenmpi-dev libssl-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/test-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ jobs:
target: aarch64-unknown-linux-gnu
- os: macos-latest
target: aarch64-apple-darwin
- os: macos-13
target: x86_64-apple-darwin
steps:
- name: Checkout repository
uses: actions/checkout@v6

# Needed to build `proofman-starks-lib-c`, which is pulled by
# `proofman-fields` unconditionally on x86_64.
- name: Install build dependencies
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y nasm nlohmann-json3-dev libgmp-dev libsodium-dev libomp-dev libopenmpi-dev libssl-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

# Needed to run test of ere-server-api (proto generation test)
- name: Install protoc
# protoc is needed to run test of ere-server-api (proto generation test).
# The rest are needed to build `proofman-starks-lib-c`, which is pulled by
# `proofman-fields` unconditionally on x86_64.
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
sudo apt-get install -y protobuf-compiler nasm nlohmann-json3-dev libgmp-dev libsodium-dev libomp-dev libopenmpi-dev libssl-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/test-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

# Needed for crate `sp1-prover-types` (transitive dep of the verifier bench).
- name: Install protoc
# protoc is needed for crate `sp1-prover-types` (transitive dep of the
# verifier bench). The rest are needed to build `proofman-starks-lib-c`,
# which is pulled by `proofman-fields` unconditionally on x86_64.
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
sudo apt-get install -y protobuf-compiler nasm nlohmann-json3-dev libgmp-dev libsodium-dev libomp-dev libopenmpi-dev libssl-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -70,11 +72,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

# Needed for crate `sp1-prover-types`
- name: Install protoc
# protoc is needed for crate `sp1-prover-types`. The rest are needed to
# build `proofman-starks-lib-c`, which is pulled by `proofman-fields`
# unconditionally on x86_64.
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
sudo apt-get install -y protobuf-compiler nasm nlohmann-json3-dev libgmp-dev libsodium-dev libomp-dev libopenmpi-dev libssl-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
Loading
Loading