Saving files to resume work later
oginstaller/pipeline/head There was a failure building this commit Details

tls
Nicolas Arenas 2025-06-30 13:05:37 +02:00
parent ee4543c891
commit 8f7b8a4871
1 changed files with 9 additions and 10 deletions

View File

@ -7,8 +7,11 @@ BRANCH=${BRANCH:-main}
GIT_SSL_NO_VERIFY=1
GIT_REPO="https://ognproject.evlt.uma.es/gitea/api/v1/repos/opengnsys/oginstaller/archive/$BRANCH.zip"
export GIT_SSL_NO_VERIFY
DEVEL=$1
if [ "$DEVEL" == "devel" ]; then
INSTALL_DEVEL=1
fi
install_packages() {
apt-get update
@ -38,22 +41,19 @@ extract_installer() {
rm -rf /tmp/oginstall
mkdir -p /tmp/oginstall
cp -r /tmp/oginstaller-$BRANCH/non_graf_installer/python-installer/* /tmp/oginstall/
cp -r /tmp/oginstaller-$BRANCH/non_graf_installer/component-installer/* /tmp/oginstall/
chmod 755 /tmp/oginstall/*.sh
chmod 755 /tmp/oginstall/*.py
}
create_questions() {
echo "Creating questions..."
python3 /tmp/oginstall/oginstaller-v2.py
if [ $INSTALL_DEVEL ] ; then
python3 /tmp/oginstall/oginstaller-v3.py devel
else
python3 /tmp/oginstall/oginstaller-v3.py
fi
deactivate
}
launch_component_installer() {
echo "Launching component installer..."
/tmp/oginstall/component-installer.sh
}
clean_tmp() {
rm -rf /tmp/oginstall
rm -rf /tmp/oginstaller-$BRANCH
@ -66,5 +66,4 @@ download_installer
extract_installer
create_python_venv
create_questions
launch_component_installer
clean_tmp