File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 30
30
31
31
- name : Build
32
32
run : |
33
- ./test/regression-evm/test-statistics.sh pull-request.csv
33
+ ./test/regression-evm/test-statistics.sh ./. pull-request.csv
34
34
git fetch origin
35
- git checkout master
36
- git checkout ${{ github.event.pull_request.head.sha }} -- test/regression-evm
37
- ./test/regression-evm/test-statistics.sh master.csv
35
+ git worktree add kore-master master
36
+ ./test/regression-evm/test-statistics.sh ./kore-master master.csv
38
37
./scripts/join-statistics.sh master.csv pull-request.csv
Original file line number Diff line number Diff line change 3
3
4
4
set -xeou pipefail
5
5
6
- export KORE_EXEC=" $( nix-build -A kore --arg release true --no-out-link) /bin/kore-exec"
6
+ dir=" ${1:? } " ; shift
7
+
8
+ export KORE_EXEC=" $( nix-build $dir -A kore --arg release true --no-out-link) /bin/kore-exec"
7
9
8
10
cd $( dirname $0 )
9
11
You can’t perform that action at this time.
0 commit comments