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

test(blockifier): storage changes after inner revert (#2918) #3009

Closed
wants to merge 17 commits into from
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
082a8b1
test(blockifier): storage changes after inner revert (#2918)
AvivYossef-starkware Dec 24, 2024
423f696
chore(cairo_native): add the compilation of native to the flow (#2770)
meship-starkware Dec 24, 2024
7002777
test(blockifier): inner revert in cairo 1 contract (#2889)
AvivYossef-starkware Dec 24, 2024
d1367b0
feat(ci): update papyrus docker build workflow for release branches (…
dorimedini-starkware Dec 24, 2024
357c73e
refactor(papyrus_state_reader): code cleanup + caching with sierra on…
noaov1 Dec 24, 2024
f1e1e56
feat: reinstate rustfmt script, detach from CI
Dec 24, 2024
d30e22a
fix(blockifier): move max sierra_gas constants under os_constants (#2…
TzahiTaub Dec 25, 2024
3ee6e46
test(blockifier): revert storgae changes (#2913)
AvivYossef-starkware Dec 25, 2024
e27f8ff
refactor(blockifier): revert contract test (#2941)
AvivYossef-starkware Dec 25, 2024
93c3ef6
chore(cairo_native): add native to stack trace test (#2633)
meship-starkware Dec 25, 2024
dc7d42d
chore(blockifier): remove todos (#2947)
aner-starkware Dec 26, 2024
95e43c5
chore(blockifier): impl deserialize for versioned_constants (#2838)
Yonatan-Starkware Dec 26, 2024
6f09863
chore(blockifier, native_blockifier, starknet_batcher): remove visite…
Yoni-Starkware Dec 26, 2024
2323338
fix(cairo_native): fix libcairo_native env variable path in config.to…
meship-starkware Dec 29, 2024
8552dd5
chore(blockifier): add feild channel_size to contract_class_manager_c…
avivg-starkware Dec 29, 2024
2a7d97c
fix(blockifier): get alias from last state diff (#2946)
yoavGrs Dec 29, 2024
b875cc0
fix(ci): compile rust docs in release and deny warnings (#2824)
giladchase Dec 30, 2024
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
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[env]
CAIRO_NATIVE_RUNTIME_LIBRARY = "./libcairo_native_runtime.a"
CAIRO_NATIVE_RUNTIME_LIBRARY = "../blockifier/libcairo_native_runtime.a"
LLVM_SYS_191_PREFIX = "/usr/lib/llvm-19/"
MLIR_SYS_190_PREFIX = "/usr/lib/llvm-19/"
TABLEGEN_190_PREFIX = "/usr/lib/llvm-19/"
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ on:
env:
CI: 1
RUSTFLAGS: "-D warnings -C link-arg=-fuse-ld=lld"
RUSTDOCFLAGS: "-D warnings -C link-arg=-fuse-ld=lld"
EXTRA_RUST_TOOLCHAINS: nightly-2024-04-29

# On PR events, cancel existing CI runs on this same PR for this workflow.
4 changes: 2 additions & 2 deletions .github/workflows/papyrus_docker-publish.yml
Original file line number Diff line number Diff line change
@@ -70,8 +70,8 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=ref,event=pr
# set `dev` tag for the default branch (`main`).
type=raw,value=dev,enable={{is_default_branch}}
# set `main*` tag for the default / release branches.
type=raw,value={{branch}},enable=${{ github.event_name == 'push' && contains(github.ref, 'main') }}
type=raw,value={{branch}}{{tag}}-{{sha}},enable=${{ github.event_name == 'workflow_dispatch' }}

# Build and push Docker image with Buildx
5 changes: 5 additions & 0 deletions config/sequencer/default_config.json
Original file line number Diff line number Diff line change
@@ -129,6 +129,11 @@
"pointer_target": "versioned_constants_overrides.validate_max_n_steps",
"privacy": "Public"
},
"batcher_config.contract_class_manager_config.channel_size": {
"description": "The size of the compilation request channel.",
"privacy": "Public",
"value": 1000
},
"batcher_config.contract_class_manager_config.contract_cache_size": {
"description": "The size of the global contract cache.",
"privacy": "Public",
Loading
Loading