aboutsummaryrefslogtreecommitdiff
path: root/dev/bench/gitlab.sh
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-08-24 14:34:37 +0200
committerPierre-Marie Pédrot2020-08-24 15:03:55 +0200
commitbcde3d1726a1ffee3d39ef22e1d12d86c2842ece (patch)
tree0252bc5538a06a4bfee281e232b5ebd8078b7aa8 /dev/bench/gitlab.sh
parentf42b28ed0cfd200395a4a32fd1ebe6a7f73a7ddb (diff)
Perform a few tweaks to make the bench script work properly.
Diffstat (limited to 'dev/bench/gitlab.sh')
-rwxr-xr-xdev/bench/gitlab.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/dev/bench/gitlab.sh b/dev/bench/gitlab.sh
index 5423f30aba..15f5c01ac6 100755
--- a/dev/bench/gitlab.sh
+++ b/dev/bench/gitlab.sh
@@ -40,17 +40,18 @@ check_variable "coq_pr_number"
check_variable "coq_pr_comment_id"
check_variable "new_ocaml_switch"
check_variable "new_coq_repository"
-check_variable "new_coq_commit"
check_variable "new_coq_opam_archive_git_uri"
check_variable "new_coq_opam_archive_git_branch"
check_variable "old_ocaml_switch"
check_variable "old_coq_repository"
-old_coq_commit="609152467f4d717713b7ea700f5155fc9f341cd7"
check_variable "old_coq_opam_archive_git_uri"
check_variable "old_coq_opam_archive_git_branch"
check_variable "num_of_iterations"
check_variable "coq_opam_packages"
+new_coq_commit=$(git rev-parse HEAD^2)
+old_coq_commit=$(git merge-base HEAD^1 $new_coq_commit)
+
if which jq > /dev/null; then
:
else