Skip to content
Snippets Groups Projects
install.sh 1.01 KiB
#!/bin/bash

if [ ! -d "bin" ]; then
    mkdir bin
fi

if [ ! -d "obj" ]; then
    mkdir obj
fi 

if [ ! -d "int" ]; then
    mkdir int
    mkdir int/clean
    mkdir int/commands
fi


# check for versions of unix, setup environment variable
unixName=`uname -s`
case "${unixName}" in
    Linux*)
        if ! grep -q 'SETUP_CI' ~/.bashrc; then
            echo "export SETUP_CI=$PWD" >> ~/.bashrc
            source ~/.bashrc
        fi
        ;;
    Darwin*)
        if ! grep -q 'SETUP_CI' ~/.bash_profile; then
            echo "export SETUP_CI=$PWD" >> ~/.bash_profile
            source ~/.bash_profile
        fi
        ;;
    *)
        echo "Incompatible OS"
        exit -1
esac

# build SetupCI
make -C src/

# ask for installation
while true; do
    read -p "Do you wish to install Azure [y/N]?" yn
    case $yn in
        [Yy]* ) $SETUP_CI/scripts/azInstall.sh; break;;
        [Nn]* ) echo "Azure is required to run VM tests. Otherwise run locally." ; exit;;
        * ) echo "Please answer yes or no.";;
    esac
done