Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade stwo-cairo when building nightly release #1961

Merged
merged 3 commits into from
Feb 10, 2025
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
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
- name: Upgrade Cairo-lint to latest main commit
run: cargo xtask upgrade cairolint --rev $(git ls-remote --refs "https://github.com/software-mansion/cairo-lint" main | awk '{print $1}')

- name: Upgrade stwo-cairo to latest main commit
run: cargo xtask upgrade stwo-cairo --rev $(git ls-remote --refs "https://github.com/starkware-libs/stwo-cairo" main | awk '{print $1}')

- name: Rebuild xtasks after Cargo.toml changes
run: cargo build -p xtask

Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ cairo-lang-utils = { version = "*", features = ["env_logger"] }
cairo-language-server = "*"
cairo-lint-core = "*"
cairo-vm = "1.0.1"
stwo_cairo_prover = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "bac7248", features = ["std"] }
camino = { version = "1", features = ["serde1"] }
cargo_metadata = ">=0.18"
clap = { version = "4", features = ["derive", "env", "string"] }
Expand Down Expand Up @@ -136,6 +135,7 @@ smallvec = "1"
smol_str = { version = "0.3", features = ["serde"] }
snapbox = { version = "0.4", features = ["cmd", "path"] }
starknet-types-core = "0.1"
stwo_cairo_prover = { version = "*", features = ["std"] }
syn = "2"
tar = "0.4"
target-triple = "0.1"
Expand Down Expand Up @@ -201,6 +201,7 @@ cairo-lang-test-utils = { git = "https://github.com/starkware-libs/cairo", rev =
cairo-lang-utils = { git = "https://github.com/starkware-libs/cairo", rev = "6f2d4975dcf76651793d5880e1429ae96c1c0869" }
cairo-language-server = { git = "https://github.com/software-mansion/cairols", rev = "b119e629dfc3a49ba3cb1ecb826011f4063523ce" }
cairo-lint-core = { git = "https://github.com/software-mansion/cairo-lint", rev = "20a858bcfba2319edfd92021e243e6cf95543330" }
stwo_cairo_prover = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "cbcd8da26a374415e77c83a96d4fadd3bec853a7" }

[profile.release]
lto = true
Expand Down