Skip to content

Commit

Permalink
Add cairo-1-run to clean (lambdaclass#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta authored Oct 17, 2023
1 parent 4598416 commit f434823
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,10 @@ cargo-deps:
cargo install --version 0.5.9 cargo-llvm-cov
cargo install --version 0.11.0 wasm-pack

deps: cargo-deps build-cairo-1-compiler build-cairo-2-compiler
cairo1-run-deps:
cd cairo1-run; make deps

deps: cargo-deps build-cairo-1-compiler build-cairo-2-compiler cairo1-run-deps
pyenv install -s pypy3.9-7.3.9
PYENV_VERSION=pypy3.9-7.3.9 python -m venv cairo-vm-pypy-env
. cairo-vm-pypy-env/bin/activate ; \
Expand All @@ -193,7 +196,7 @@ deps: cargo-deps build-cairo-1-compiler build-cairo-2-compiler
. cairo-vm-env/bin/activate ; \
pip install -r requirements.txt ; \

deps-macos: cargo-deps build-cairo-1-compiler-macos build-cairo-2-compiler-macos
deps-macos: cargo-deps build-cairo-1-compiler-macos build-cairo-2-compiler-macos cairo1-run-deps
arch -x86_64 pyenv install -s pypy3.9-7.3.9
PYENV_VERSION=pypy3.9-7.3.9 python -m venv cairo-vm-pypy-env
. cairo-vm-pypy-env/bin/activate ; \
Expand Down Expand Up @@ -310,6 +313,7 @@ clean:
rm -rf cairo1
rm -rf cairo2
rm -rf cairo-lang
cd cairo1-run; make clean

fuzzer-deps: build
cargo +nightly install cargo-fuzz
Expand Down

1 comment on commit f434823

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.

Benchmark suite Current: f434823 Previous: f9195e8 Ratio
add_u64_with_felt/1 4 ns/iter (± 0) 3 ns/iter (± 0) 1.33
add_u64_with_felt/2 4 ns/iter (± 0) 3 ns/iter (± 0) 1.33

This comment was automatically generated by workflow using github-action-benchmark.

CC: @unbalancedparentheses

Please sign in to comment.