https://github.com/homalg-project/homalg_project
Raw File
Tip revision: 6dada2b15c36569f38947c2322f4e957c83c5259 authored by Mohamed Barakat on 01 December 2022, 10:35:39 UTC
Merge pull request #557 from zickgraf/master
Tip revision: 6dada2b
ci_prepare
#!/bin/bash

cd ..

PACKAGES_TO_CLONE="
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 ..

cd ToricVarieties_project/TopcomInterface
make install
cd ../..

cd homalg_project
back to top