aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-geocoq.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ci/ci-geocoq.sh')
-rwxr-xr-xdev/ci/ci-geocoq.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/ci/ci-geocoq.sh b/dev/ci/ci-geocoq.sh
index 8e6448e76..24cd9c427 100755
--- a/dev/ci/ci-geocoq.sh
+++ b/dev/ci/ci-geocoq.sh
@@ -1,12 +1,12 @@
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
-source ${ci_dir}/ci-common.sh
+. "${ci_dir}/ci-common.sh"
-GeoCoq_CI_DIR=${CI_BUILD_DIR}/GeoCoq
+GeoCoq_CI_DIR="${CI_BUILD_DIR}/GeoCoq"
-git_checkout ${GeoCoq_CI_BRANCH} ${GeoCoq_CI_GITURL} ${GeoCoq_CI_DIR}
+git_checkout "${GeoCoq_CI_BRANCH}" "${GeoCoq_CI_GITURL}" "${GeoCoq_CI_DIR}"
-( cd ${GeoCoq_CI_DIR} && \
- ./configure-ci.sh && \
- make )
+install_ssralg
+
+( cd "${GeoCoq_CI_DIR}" && ./configure.sh && make )