https://github.com/homalg-project/homalg_project
Raw File
Tip revision: 0f7fba5ac8d2e04623af7092d47f9d61cf606886 authored by Mohamed Barakat on 22 November 2022, 22:59:40 UTC
Merge pull request #556 from mohamed-barakat/devel
Tip revision: 0f7fba5
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