Skip to content

Commit c11ba47

Browse files
authored
try fixing ci (#7)
1 parent 86ae576 commit c11ba47

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ip2country-bench/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/target
1+
target/
22
.DS_Store

ip2country-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ workspace = true
1818
ip2country = { path = "../ip2country" }
1919

2020
[dev-dependencies]
21-
iai = { git = "https://github.com/bheisler/iai.git", rev = "58e28e940c62898a45d17cb531f9012fb173d236" }
21+
iai = { git = "https://github.com/lambdaclass/iai.git", rev = "3bef75b" }
2222

2323
[[bench]]
2424
name = "benchmark"

ip2country-bench/justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ build-docker:
22
docker build -t iai -f Dockerfile .
33

44
bench:
5-
docker run -it -v "$(shell pwd)/..":/project iai \
6-
/bin/bash -c "cd /project/ip2country-bench && make bench-inside-docker"
5+
docker run -it -v "$(pwd)/..":/project iai \
6+
/bin/bash -c "cd /project/ip2country-bench && IAI_ALLOW_ASLR=true cargo bench"
77

88
bench-inside-docker:
9-
IAI_ALLOW_ASLR=true cargo bench
9+
RUST_BACKTRACE=full IAI_ALLOW_ASLR=true cargo bench

0 commit comments

Comments
 (0)