Revision b9190b69400b3cf4aa1809e261a2f25b149f2fb8 authored by Mohamed Barakat on 20 December 2022, 21:31:13 UTC, committed by GitHub on 20 December 2022, 21:31:13 UTC
fix segfault as suggested by @ChrisJefferson
2 parent s aa88327 + b26b3c4
Raw File
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