aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-10-22 14:14:10 +0200
committerPierre-Marie Pédrot2020-10-22 14:14:10 +0200
commitfe095cd8b63e363e82953503cb84a851296c1965 (patch)
tree7cd36ac605b806d6ae3ba477862e89ea26737b81
parent0d45ff2d002cb51046a34bb05dc34a67d5dab3cf (diff)
parentf0ce03e2c4d519ee8321bed8d61c3c959e505d49 (diff)
Merge PR #13243: Fix bench variables
Reviewed-by: ppedrot
-rwxr-xr-xdev/bench/gitlab.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/dev/bench/gitlab.sh b/dev/bench/gitlab.sh
index 1dea97160c..d2e150be9a 100755
--- a/dev/bench/gitlab.sh
+++ b/dev/bench/gitlab.sh
@@ -41,18 +41,18 @@ echo $PWD
#check_variable "JENKINS_URL"
check_variable "CI_JOB_URL"
-: "${coq_pr_number:=''}"
-: "${coq_pr_comment_id:=''}"
-: "${new_ocaml_switch:='ocaml-base-compiler.4.07.1'}"
-: "${old_ocaml_switch:='ocaml-base-compiler.4.07.1'}"
-: "${new_coq_repository:='https://gitlab.com/coq/coq.git'}"
-: "${old_coq_repository:='https://gitlab.com/coq/coq.git'}"
-: "${new_coq_opam_archive_git_uri:='https://github.com/coq/opam-coq-archive.git'}"
-: "${old_coq_opam_archive_git_uri:='https://github.com/coq/opam-coq-archive.git'}"
-: "${new_coq_opam_archive_git_branch:='master'}"
-: "${old_coq_opam_archive_git_branch:='master'}"
+: "${coq_pr_number:=}"
+: "${coq_pr_comment_id:=}"
+: "${new_ocaml_switch:=ocaml-base-compiler.4.07.1}"
+: "${old_ocaml_switch:=ocaml-base-compiler.4.07.1}"
+: "${new_coq_repository:=https://gitlab.com/coq/coq.git}"
+: "${old_coq_repository:=https://gitlab.com/coq/coq.git}"
+: "${new_coq_opam_archive_git_uri:=https://github.com/coq/opam-coq-archive.git}"
+: "${old_coq_opam_archive_git_uri:=https://github.com/coq/opam-coq-archive.git}"
+: "${new_coq_opam_archive_git_branch:=master}"
+: "${old_coq_opam_archive_git_branch:=master}"
: "${num_of_iterations:=1}"
-: "${coq_opam_packages:='coq-performance-tests-lite coq-engine-bench-lite coq-hott coq-bignums coq-mathcomp-ssreflect coq-mathcomp-fingroup coq-mathcomp-algebra coq-mathcomp-solvable coq-mathcomp-field coq-mathcomp-character coq-mathcomp-odd-order coq-math-classes coq-corn coq-flocq coq-compcert coq-geocoq coq-color coq-coqprime coq-coqutil coq-bedrock2 coq-rewriter coq-fiat-core coq-fiat-parsers coq-fiat-crypto coq-unimath coq-sf-plf coq-coquelicot coq-lambda-rust coq-verdi coq-verdi-raft coq-fourcolor coq-rewriter-perf-SuperFast'}"
+: "${coq_opam_packages:=coq-performance-tests-lite coq-engine-bench-lite coq-hott coq-bignums coq-mathcomp-ssreflect coq-mathcomp-fingroup coq-mathcomp-algebra coq-mathcomp-solvable coq-mathcomp-field coq-mathcomp-character coq-mathcomp-odd-order coq-math-classes coq-corn coq-flocq coq-compcert coq-geocoq coq-color coq-coqprime coq-coqutil coq-bedrock2 coq-rewriter coq-fiat-core coq-fiat-parsers coq-fiat-crypto coq-unimath coq-sf-plf coq-coquelicot coq-lambda-rust coq-verdi coq-verdi-raft coq-fourcolor coq-rewriter-perf-SuperFast}"
new_coq_commit=$(git rev-parse HEAD^2)
old_coq_commit=$(git merge-base HEAD^1 $new_coq_commit)