aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-common.sh
diff options
context:
space:
mode:
authorcoqbot-app[bot]2021-03-17 08:47:32 +0000
committerGitHub2021-03-17 08:47:32 +0000
commiteeef63b0b09cf90f7a3022ce6f0d7e50a908484c (patch)
treecf76595f742e31a7813872ff6010e5f872c25fb4 /dev/ci/ci-common.sh
parent231efff194453651592dd40aa0389012a133d38f (diff)
parentf4579a0bcdbdba6304a9970fc6ea6190a68f9c8c (diff)
Merge PR #13929: [ci] [gitlab] Remove ad-hoc mathcomp install macros
Reviewed-by: gares Reviewed-by: Zimmi48
Diffstat (limited to 'dev/ci/ci-common.sh')
-rw-r--r--dev/ci/ci-common.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh
index 8d8f78e10c..006565df5c 100644
--- a/dev/ci/ci-common.sh
+++ b/dev/ci/ci-common.sh
@@ -143,33 +143,3 @@ make()
command make --output-sync "$@"
fi
}
-
-# this installs just the ssreflect library of math-comp
-install_ssreflect()
-{
- echo 'Installing ssreflect'
-
- git_download mathcomp
-
- ( cd "${CI_BUILD_DIR}/mathcomp/mathcomp/ssreflect" && \
- make && \
- make install )
-
-}
-
-# this installs just the ssreflect + algebra library of math-comp
-install_ssralg()
-{
- echo 'Installing ssralg'
-
- git_download mathcomp
-
- ( cd "${CI_BUILD_DIR}/mathcomp/mathcomp" && \
- make -C ssreflect && \
- make -C ssreflect install && \
- make -C fingroup && \
- make -C fingroup install && \
- make -C algebra && \
- make -C algebra install )
-
-}