Skip to content

Commit c3172ce

Browse files
committed
Use nix/shell.performance.nix for performance testing
1 parent 5961ad8 commit c3172ce

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

nix/shell.performance.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
let
2+
default = import ../default.nix {};
3+
inherit (default) pkgs;
4+
inherit (pkgs) jq miller;
5+
in
6+
7+
pkgs.mkShell {
8+
buildInputs = [ jq miller ];
9+
}

scripts/join-statistics.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env nix-shell
2-
#!nix-shell -i bash -p miller
2+
#!nix-shell ../nix/shell.performance.nix -i bash
33

44
old=${1:?}; shift
55
new=${1:?}; shift

test/regression-evm/test-statistics.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env nix-shell
2-
#!nix-shell ../../test.nix -i bash -p jq
2+
#!nix-shell ../../nix/shell.performance.nix -i bash
33

44
set -xeou pipefail
55

0 commit comments

Comments
 (0)