Skip to content

Commit

Permalink
chore: remove stark-backend from workspace (#1023)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang authored Dec 13, 2024
1 parent 3c75b84 commit af15760
Show file tree
Hide file tree
Showing 112 changed files with 128 additions and 12,388 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/algebra-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run algebra extension crate tests
working-directory: extensions/algebra/circuit
run: |
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/benchmark-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ jobs:
##########################################################################
# Environment setup #
##########################################################################

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
types: [opened, synchronize, reopened, labeled]
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/stark-sdk/**"
- "crates/circuits/**"
- "crates/vm/**"
- "crates/toolchain/**"
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/bigint-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run bigint extension crate tests
working-directory: extensions/bigint/circuit
run: |
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
with:
cache-on-failure: true

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run build
run: |
cargo build --verbose
cargo build --verbose
8 changes: 7 additions & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/primitives/**"
- "crates/vm/**"
- "crates/sdk/**"
Expand Down Expand Up @@ -58,6 +57,13 @@ jobs:
run: |
bash ./extensions/native/recursion/trusted_setup_s3.sh
# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
# TODO: CLI build, transpile, run, (keygen), prove, contract, verify
- name: Run app-level CLI commands
working-directory: crates/cli
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ecc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/primitives/**"
- "crates/vm/**"
- "crates/cli/**"
Expand Down Expand Up @@ -36,6 +35,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run pairing-guest crate tests
working-directory: extensions/pairing/guest
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/keccak256-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
- runs-on=${{ github.run_id }}
- runner=64cpu-linux-arm64

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
with:
cache-on-failure: true

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run fmt
run: |
cargo fmt --all -- --check
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/native-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run native extension crate tests
working-directory: extensions/native/circuit
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/primitives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/primitives/**"
- "crates/circuits/poseidon2-air/**"

Expand All @@ -32,6 +31,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run tests for primitives
working-directory: crates/circuits/primitives
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/recursion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/primitives/**"
- "crates/vm/**"
- "extensions/native/compiler/**"
Expand Down Expand Up @@ -36,6 +35,13 @@ jobs:
- name: Install solc # svm should support arm64 linux
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.19 && solc --version

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run recursion crate tests
working-directory: extensions/native/recursion
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/riscv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
with:
submodules: recursive

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run Makefile
working-directory: crates/toolchain/tests/rv32im-test-vectors
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/rv32im-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run rv32im extension crate tests
working-directory: extensions/rv32im/circuit
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/primitives/**"
- "crates/vm/**"
- "crates/sdk/**"
Expand Down Expand Up @@ -36,6 +35,13 @@ jobs:
- name: Install solc # svm should support arm64 linux
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.19 && solc --version

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Install architecture specific tools
run: |
arch=$(uname -m)
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/stark-backend.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/toolchain-edsl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run circuit and compiler tests
working-directory: extensions/native/compiler
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run toolchain tests
working-directory: crates/toolchain/tests
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["**"]
paths:
- "crates/stark-backend/**"
- "crates/circuits/**"
- "crates/vm/**"

Expand All @@ -32,6 +31,13 @@ jobs:
cache-on-failure: true
- uses: taiki-e/install-action@nextest

# TEMPORARY
- name: Give GitHub Actions access to private repositories
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
- name: Run vm crate tests
working-directory: crates/vm
run: |
Expand Down
25 changes: 4 additions & 21 deletions Cargo.lock

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

Loading

0 comments on commit af15760

Please sign in to comment.