https://github.com/homalg-project/homalg_project
Raw File
Tip revision: c8a24603990e85efad37fe15a1375b334d54c187 authored by Mohamed Barakat on 28 September 2022, 12:56:41 UTC
Merge pull request #526 from zickgraf/master
Tip revision: c8a2460
ci_prepare
#!/bin/bash

cd ..

PACKAGES_TO_CLONE="
test_suite
alcove
alexander
CddInterface
CAP_project
D-Modules
NConvex
Sheaves
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