diff options
| author | coqbot-app[bot] | 2020-12-15 18:06:03 +0000 |
|---|---|---|
| committer | GitHub | 2020-12-15 18:06:03 +0000 |
| commit | 83d225fe5d2320429cb1d64118f1c87a19d84e57 (patch) | |
| tree | fec5a7eeb6b4a17f5ab25402d3e11415adebdab8 | |
| parent | c6058328a1ba583b32bdb7d2e5843a2ba1d5cf73 (diff) | |
| parent | 806ac6fc89975ec08d315c29ec1ea300492f05da (diff) | |
Merge PR #13633: [ci] uniform name of projects w.r.t. opam packages
Reviewed-by: ejgallego
| -rwxr-xr-x | dev/ci/ci-basic-overlay.sh | 4 | ||||
| -rwxr-xr-x | dev/ci/ci-elpi.sh | 4 | ||||
| -rwxr-xr-x | dev/ci/ci-gappa.sh | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index dd683c96a9..b65430aa51 100755 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -132,7 +132,7 @@ project gappa_tool "https://gitlab.inria.fr/gappa/gappa" "master" ######################################################################## # Gappa plugin ######################################################################## -project gappa_plugin "https://gitlab.inria.fr/gappa/coq" "master" +project gappa "https://gitlab.inria.fr/gappa/coq" "master" ######################################################################## # CompCert @@ -214,7 +214,7 @@ project equations "https://github.com/mattam82/Coq-Equations" "master" ######################################################################## project elpi "https://github.com/LPCIC/coq-elpi" "coq-master" -project elpi_hb "https://github.com/math-comp/hierarchy-builder" "coq-master" +project hierarchy_builder "https://github.com/math-comp/hierarchy-builder" "coq-master" ######################################################################## # Engine-Bench diff --git a/dev/ci/ci-elpi.sh b/dev/ci/ci-elpi.sh index 4f185db813..d8caf8ee87 100755 --- a/dev/ci/ci-elpi.sh +++ b/dev/ci/ci-elpi.sh @@ -7,6 +7,6 @@ git_download elpi ( cd "${CI_BUILD_DIR}/elpi" && make && make install ) -git_download elpi_hb +git_download hierarchy_builder -( cd "${CI_BUILD_DIR}/elpi_hb" && make && make install ) +( cd "${CI_BUILD_DIR}/hierarchy_builder" && make && make install ) diff --git a/dev/ci/ci-gappa.sh b/dev/ci/ci-gappa.sh index c346354b70..1af37aa7c1 100755 --- a/dev/ci/ci-gappa.sh +++ b/dev/ci/ci-gappa.sh @@ -7,6 +7,6 @@ git_download gappa_tool ( cd "${CI_BUILD_DIR}/gappa_tool" && ( if [ ! -x ./configure ]; then autoreconf && touch stamp-config_h.in && ./configure --prefix=${CI_INSTALL_DIR}; fi ) && ./remake "-j${NJOBS}" && ./remake install ) -git_download gappa_plugin +git_download gappa -( cd "${CI_BUILD_DIR}/gappa_plugin" && ( if [ ! -x ./configure ]; then autoconf && ./configure; fi ) && ./remake "-j${NJOBS}" && ./remake install ) +( cd "${CI_BUILD_DIR}/gappa" && ( if [ ! -x ./configure ]; then autoconf && ./configure; fi ) && ./remake "-j${NJOBS}" && ./remake install ) |
