Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

"Nightly" builds

Questions related to installing, updating, setting up and configuring
Post Reply
Giu
Posts: 87
Joined: Sat Jan 25, 2014 11:01 am
Has thanked: 9 times

"Nightly" builds

Unread post by Giu »

Hi all,

I'm so excited about the upcoming changes for mobile, and would like to do some testing, but I would like to ask what could be a good/fast way of testing?

I though that maybe cloning github repo, and then run update could be an option to get a snapshot working with latest changes?

Regards.
Janusz
nuBuilder Team
Posts: 508
Joined: Fri Dec 28, 2018 1:41 pm
Location: Krakow, Poland
Has thanked: 11 times
Been thanked: 18 times

Re: "Nightly" builds

Unread post by Janusz »

Do you use the linux server (LAMP)? If yes I can provide some info on how to make automatic update of the nuBuilder from the GitHub.

For example to check from linux terminal installed version you can use:

Code: Select all

#!/bin/bash
echo nubuilder local ver.:
y=$(head /var/www/html/nubuilder/version.txt -n 4 | tail -2)
echo $y

echo GitHub ver.:
x=$(curl -s https://raw.githubusercontent.com/nuBuilder/nuBuilder/master/version.txt | head -n 4 | tail -2)
echo $x

if test "$x" != "$y" ; then
echo ">>> NOK, new nuBuilder version available!"
else
echo ">>> OK, the latest version is installed :-)"
fi
If you like nuBuilder, please leave a review on SourceForge
kev1n
nuBuilder Team
Posts: 4581
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 76 times
Been thanked: 536 times
Contact:

Re: "Nightly" builds

Unread post by kev1n »

You can download the latest development version from GitHub.
To activate "Mobile View 2", follow the instructions provided in the announcement.
It is constantly being improved.
Giu
Posts: 87
Joined: Sat Jan 25, 2014 11:01 am
Has thanked: 9 times

Re: "Nightly" builds

Unread post by Giu »

Janusz wrote: Sun Jun 16, 2024 7:37 pm Do you use the linux server (LAMP)? If yes I can provide some info on how to make automatic update of the nuBuilder from the GitHub.

For example to check from linux terminal installed version you can use:

Code: Select all

#!/bin/bash
echo nubuilder local ver.:
y=$(head /var/www/html/nubuilder/version.txt -n 4 | tail -2)
echo $y

echo GitHub ver.:
x=$(curl -s https://raw.githubusercontent.com/nuBuilder/nuBuilder/master/version.txt | head -n 4 | tail -2)
echo $x

if test "$x" != "$y" ; then
echo ">>> NOK, new nuBuilder version available!"
else
echo ">>> OK, the latest version is installed :-)"
fi
Sometimes I'm under windows and sometimes under Linux, usually more time under Linux, I only reboot to Windows when needed.
My problem under Linux is I like to use weird things not being a Linux expert, then, right now I'm under NixOS, that it's awesome, but I don't know how to do a lot of things rofl.
Post Reply