blob: f170b353271ae4b31ee4ace887e6de1ec791aac1 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
# $0 is not the safest way, but...
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
git_download mathcomp
( cd "${CI_BUILD_DIR}/mathcomp/mathcomp" && make && make test-suite && make install )
|