Daily and Stable - both at once?

Post Reply
User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Daily and Stable - both at once?

by GreenXenith » Post

Hello!
I have recently taken interest in trying the daily builds. I want to try them, but I also want to keep the stable. If I add a new repository (daily instead of stable) and use the apt-get install minetestc55 (I am using Xubuntu), I am assuming that it will replace the stable build (if not let me know).
Is there a way to have both the stable and daily at once on my system?
Thanks!
-Green
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Daily and Stable - both at once?

by rubenwardy » Post

You can use the one line build command to build it yourself - the daily build will then just be in a folder in home rather than system wide.

viewtopic.php?f=3&t=3837

If you use the version which is not run in place / not portable it'll also use the same files. Make sure you remove the sudo make install command
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Re: Daily and Stable - both at once?

by GreenXenith » Post

rubenwardy wrote:Make sure you remove the sudo make install command
What does that mean?

EDIT: Nevermind I think I found it.
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Re: Daily and Stable - both at once?

by GreenXenith » Post

It worked! Thanks!
Here is full code:

Code: Select all

sudo apt-get install -y git build-essential libirrlicht-dev libgettextpo0 libfreetype6-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-openssl-dev libluajit-5.1-dev liblua5.1-0-dev libleveldb-dev; cd; git clone https://github.com/minetest/minetest.git; cd minetest/games; git clone https://github.com/minetest/minetest_game.git; cd ..; cmake . -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LEVELDB=1; make -j$(nproc); minetest; echo -e "\n\n\e[1;33mYou can run Minetest again by typing \"minetest\" in a terminal or selecting it in an applications menu.\nYou can install mods in ~/.minetest/mods, too.\e[0m"
Now do I have to run this every time I want to try a new daily build?
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Daily and Stable - both at once?

by rubenwardy » Post

GreenDimond wrote:It worked! Thanks!
Here is full code:

Code: Select all

sudo apt-get install -y git build-essential libirrlicht-dev libgettextpo0 libfreetype6-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-openssl-dev libluajit-5.1-dev liblua5.1-0-dev libleveldb-dev; cd; git clone https://github.com/minetest/minetest.git; cd minetest/games; git clone https://github.com/minetest/minetest_game.git; cd ..; cmake . -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LEVELDB=1; make -j$(nproc); minetest; echo -e "\n\n\e[1;33mYou can run Minetest again by typing \"minetest\" in a terminal or selecting it in an applications menu.\nYou can install mods in ~/.minetest/mods, too.\e[0m"
Now do I have to run this every time I want to try a new daily build?
You just have to run this:

Code: Select all

git pull origin master && make -j$(nproc)
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
SuperPantsofDoom
Member
Posts: 37
Joined: Sun Dec 20, 2015 00:10
In-game: aslar

Re: Daily and Stable - both at once?

by SuperPantsofDoom » Post

I curious: what is the daily build and where can i find it?
check out my subgame yentest viewtopic.php?f=50&t=16014

User avatar
MineYoshi
Member
Posts: 5373
Joined: Wed Jul 08, 2015 13:20
Contact:

Re: Daily and Stable - both at once?

by MineYoshi » Post

SuperPantsofDoom wrote:I curious: what is the daily build and where can i find it?
A daily build is simply-ish a version of Minetest with new changes, but the thing is that is unstable and sometimes can crash if there is an error. (not everytime).
Depending on your Operative System you can get them in this area of the forum.

For Windows 64-32 Bit
viewtopic.php?f=42&t=1523&start=550
OSX
viewtopic.php?f=42&t=9190&start=250
Android
viewtopic.php?f=42&t=12169&start=25
Linux(Debian/Ubuntu)
viewtopic.php?f=42&t=3837
Have a nice day! :D

User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Re: Daily and Stable - both at once?

by GreenXenith » Post

rubenwardy wrote:
GreenDimond wrote:It worked! Thanks!
Here is full code:

Code: Select all

sudo apt-get install -y git build-essential libirrlicht-dev libgettextpo0 libfreetype6-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-openssl-dev libluajit-5.1-dev liblua5.1-0-dev libleveldb-dev; cd; git clone https://github.com/minetest/minetest.git; cd minetest/games; git clone https://github.com/minetest/minetest_game.git; cd ..; cmake . -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LEVELDB=1; make -j$(nproc); minetest; echo -e "\n\n\e[1;33mYou can run Minetest again by typing \"minetest\" in a terminal or selecting it in an applications menu.\nYou can install mods in ~/.minetest/mods, too.\e[0m"
Now do I have to run this every time I want to try a new daily build?
You just have to run this:

Code: Select all

git pull origin master && make -j$(nproc)
Tried that. Didn't work. What exactly do I type???
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Re: Daily and Stable - both at once?

by GreenXenith » Post

[Removed]
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

Post Reply

Who is online

Users browsing this forum: No registered users and 13 guests