https://github.com/homalg-project/homalg_project
Raw File
Tip revision: ffbeb0cb8ce66a7a6acb5a8a5ec20e655660b124 authored by Mohamed Barakat on 24 February 2022, 13:38:47 UTC
made package utils suggested instead of needed
Tip revision: ffbeb0c
ci_prepare
#!/bin/bash

cd ..

# TODO: MapleForHomalg
PACKAGES_TO_CLONE="
test_suite
AbelianSystems
alcove
alexander
CddInterface
CAP_project
Conley
D-Modules
k-Points
NConvex
Orbifolds
Sheaves
SimplicialObjects
SystemTheory
ToricVarieties_project
VirtualCAS
"

for PACKAGE in $PACKAGES_TO_CLONE; do
	if [ ! -e $PACKAGE ]; then
		git clone "https://github.com/homalg-project/$PACKAGE.git"
	fi
done

cd CddInterface
./install.sh $GAP_HOME
cd ..

cp test_suite/init_homalg_project_test_suite.sample test_suite/init_homalg_project_test_suite
sed -i "s|~/software/pkg|$PWD|g" test_suite/init_homalg_project_test_suite

# remove tests already covered by ci-test
sed -i 's|homalg_project/[^ "]*||g' test_suite/test_packages_of_homalg_project

cd homalg_project
back to top