Skip to content

Commit b35795c

Browse files
committed
test-statistics.sh: Build own kore-exec
1 parent 0f8c667 commit b35795c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030

3131
- name: Build
3232
run: |
33-
nix-shell test.nix --run './test/regression-evm/test-statistics.sh pull-request.csv'
33+
./test/regression-evm/test-statistics.sh pull-request.csv
3434
git fetch origin
3535
git checkout master
3636
git checkout ${{ github.event.pull_request.head.sha }} -- test/regression-evm
37-
nix-shell test.nix --run './test/regression-evm/test-statistics.sh master.csv'
37+
./test/regression-evm/test-statistics.sh master.csv
3838
./scripts/join-statistics.sh master.csv pull-request.csv

test/regression-evm/test-statistics.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
set -xeou pipefail
55

6+
export KORE_EXEC="$(nix-build -A kore --arg release true --no-out-link)/bin/kore-exec"
7+
68
cd $(dirname $0)
79

810
out="${1:?}"; shift

0 commit comments

Comments
 (0)