-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs]: Update docusaurus to latest and add versioned docs (#661)
Add versioned docs for 1.10.1, 2.8.0, and v3 versions
- Loading branch information
1 parent
3b4b6a0
commit 71ec004
Showing
206 changed files
with
36,208 additions
and
19,208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,21 +49,31 @@ jobs: | |
run: | | ||
git config user.name release-bot | ||
git config user.email [email protected] | ||
cargo workspaces version ${{ inputs.releaseType }} -y --no-individual-tags -m "Bump rust crates' version" | ||
cargo workspaces version ${{ inputs.releaseType }} -y --no-individual-tags --no-git-push -m "Bump rust crates' version" | ||
- name: Bump docs version | ||
id: bump-docs-version | ||
if: inputs.releaseType != 'patch' | ||
working-directory: ./docs | ||
run: | | ||
LATEST_TAG=$(git describe --tags --abbrev=0) | ||
LATEST_VERSION=$LATEST_TAG:0:1 | ||
npm run docusaurus docs:version $LATEST_VERSION | ||
git add --all | ||
git commit -m "Bump docs version" | ||
git push | ||
- name: Create draft release | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
mkdir -p release_output && rm -rf ./release_output/* | ||
# skip building release tar. TODO Yuval fix | ||
# ./scripts/release/build_all.sh ./release_output | ||
LATEST_TAG=$(git describe --tags --abbrev=0) | ||
gh release create $LATEST_TAG --generate-notes -d --verify-tag -t "Release $LATEST_TAG" | ||
- name: Upload release tars | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
mkdir -p release_output && rm -rf ./release_output/* | ||
LATEST_TAG=$(git describe --tags --abbrev=0) | ||
./scripts/release/build_all.sh ./release_output $LATEST_TAG | ||
for file in ./release_output/*.tar.gz; do | ||
gh release upload $LATEST_TAG "$file" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
node_modules/ | ||
yarn.lock | ||
.DS_Store | ||
build/ | ||
|
||
# tex build artifacts | ||
.aux | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,8 @@ title: ICICLE Overview | |
<img src="https://github.com/user-attachments/assets/02080cc6-9761-4764-8ae4-05778cc93cfa" alt="Untitled design (29)" width="500"/> | ||
</p> | ||
|
||
|
||
|
||
## What is ICICLE? | ||
|
||
|
||
[![GitHub Release](https://img.shields.io/github/v/release/ingonyama-zk/icicle)](https://github.com/ingonyama-zk/icicle/releases) | ||
|
||
[ICICLE](https://github.com/ingonyama-zk/icicle) is a cryptography library designed to accelerate zero-knowledge proofs (ZKPs) using multiple compute backends, including GPUs, CPUs, and potentially other platforms. ICICLE's key strength lies in its ability to implement blazing-fast cryptographic primitives, enabling developers to significantly reduce proving times with minimal effort. | ||
|
@@ -78,7 +75,10 @@ ICICLE is also well-suited for prototyping and developing small-scale projects. | |
|
||
Explore the full capabilities of ICICLE by diving into the [Architecture](./arch_overview.md), [Getting Started Guide](./getting_started.md) and the [Programmer's Guide](./programmers_guide/general.md) to learn how to integrate, deploy, and extend ICICLE across different backends. | ||
|
||
If you have any questions or need support, feel free to reach out on [Discord], [GitHub](https://github.com/ingonyama-zk) or <support@ingonyama.com>. We're here to help you accelerate your ZK development with ICICLE. | ||
If you have any questions or need support, feel free to reach out on [Discord], [GitHub] or [via support email][SupportEmail]. We're here to help you accelerate your ZK development with ICICLE. | ||
|
||
[ICICLE-OVERVIEW]: ./icicle/overview.md | ||
<!-- Being Links --> | ||
[Discord]: https://discord.gg/6vYrE7waPj | ||
[Github]: https://github.com/ingonyama-zk | ||
[SupportEmail]: mailto:[email protected] | ||
<!-- End Links --> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.