Add nightly support
oginstaller/pipeline/head There was a failure building this commit
Details
oginstaller/pipeline/head There was a failure building this commit
Details
parent
59367aacaa
commit
7afae7db6d
|
@ -11,6 +11,10 @@ DEVEL=$1
|
||||||
|
|
||||||
if [ "$DEVEL" == "devel" ]; then
|
if [ "$DEVEL" == "devel" ]; then
|
||||||
INSTALL_DEVEL=1
|
INSTALL_DEVEL=1
|
||||||
|
elif [ "$DEVEL" == "nightly" ]; then
|
||||||
|
INSTALL_NIGHTLY=1
|
||||||
|
else
|
||||||
|
INSTALL_STABLE=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_packages() {
|
install_packages() {
|
||||||
|
@ -48,6 +52,8 @@ create_questions() {
|
||||||
echo "Creating questions..."
|
echo "Creating questions..."
|
||||||
if [ $INSTALL_DEVEL ] ; then
|
if [ $INSTALL_DEVEL ] ; then
|
||||||
python3 /tmp/oginstall/oginstaller-v3.py devel
|
python3 /tmp/oginstall/oginstaller-v3.py devel
|
||||||
|
elif [ $INSTALL_NIGHTLY ] ; then
|
||||||
|
python3 /tmp/oginstall/oginstaller-v3.py nightly
|
||||||
else
|
else
|
||||||
python3 /tmp/oginstall/oginstaller-v3.py
|
python3 /tmp/oginstall/oginstaller-v3.py
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue