Skip to content

Commit

Permalink
Merge PR #12577: [ci] Add coq-community/coq-performance-tests
Browse files Browse the repository at this point in the history
Reviewed-by: SkySkimmer
  • Loading branch information
SkySkimmer committed Jun 24, 2020
2 parents 25ece32 + 7ea8f82 commit 3ba88c9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,9 @@ library:ci-color:
library:ci-compcert:
extends: .ci-template-flambda

library:ci-coq_performance_tests:
extends: .ci-template

library:ci-coq_tools:
extends: .ci-template

Expand Down
1 change: 1 addition & 0 deletions Makefile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ CI_TARGETS= \
ci-coquelicot \
ci-corn \
ci-cross_crypto \
ci-coq_performance_tests \
ci-coq_tools \
ci-coqprime \
ci-elpi \
Expand Down
7 changes: 7 additions & 0 deletions dev/ci/ci-basic-overlay.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@
: "${flocq_CI_GITURL:=https://gitlab.inria.fr/flocq/flocq}"
: "${flocq_CI_ARCHIVEURL:=${flocq_CI_GITURL}/-/archive}"

########################################################################
# coq-performance-tests
########################################################################
: "${coq_performance_tests_CI_REF:=master}"
: "${coq_performance_tests_CI_GITURL:=https://github.com/coq-community/coq-performance-tests}"
: "${coq_performance_tests_CI_ARCHIVEURL:=${coq_performance_tests_CI_GITURL}/archive}"

########################################################################
# coq-tools
########################################################################
Expand Down
8 changes: 8 additions & 0 deletions dev/ci/ci-coq_performance_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"

git_download coq_performance_tests

( cd "${CI_BUILD_DIR}/coq_performance_tests" && make coq perf && make validate && make install )

0 comments on commit 3ba88c9

Please sign in to comment.