https://github.com/homalg-project/homalg_project
Revision 091c2a30d8c709cb8759e828061e4a7357546e49 authored by Fabian Zickgraf on 03 November 2022, 13:21:01 UTC, committed by Fabian Zickgraf on 03 November 2022, 13:21:09 UTC
1 parent a47138b
Raw File
Tip revision: 091c2a30d8c709cb8759e828061e4a7357546e49 authored by Fabian Zickgraf on 03 November 2022, 13:21:01 UTC
Add motivation to .gitkeep files
Tip revision: 091c2a3
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