Cuberite Forum
Bearbin's Automated Builds - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html)
+--- Forum: Discussion (https://forum.cuberite.org/forum-5.html)
+--- Thread: Bearbin's Automated Builds (/thread-538.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27


RE: Bearbin's Automated Builds - bearbin - 06-18-2013

Nah, Raspberry Pis don't need any cooling. You couldn't do anything anyway, the RAM is mounted on top of the SoC with insulation between. If you look at the build time you also see it's less than an hour because GCC only compiles the changed files and then links the resultant object files together.


RE: Bearbin's Automated Builds - xoft - 06-18-2013

Still, my RasPi gets incredibly hot, so I mounted a few heatsinks, just in caseTongue

When one of the core files get changed, such as the BlockID.h or Item.h, most of the codebase is recompiled. That takes the hour. True that it doesn't happen too often, but still...


RE: Bearbin's Automated Builds - bearbin - 06-19-2013

Maybe I'll run a temperature sensor that logs the temp every few seconds and then I can graph it to see if tem is a problem. (That's if the RPi has a sensor).

Extra: I just updated the SSH slaves plugin; so hopefully the Pi will freeze slightly less often.


RE: Bearbin's Automated Builds - bearbin - 07-16-2013

The Raspberry pi is fixed! A plugin update derped and it took a while to fix it.


RE: Bearbin's Automated Builds - bearbin - 07-20-2013

The buildserver now provides MD5sum files, which should be useful for tiger's autoupdate script.


RE: Bearbin's Automated Builds - bearbin - 07-28-2013

Our space just got doubled, the service should remain operational for quite a while longer. Also updating to the new git builds as we speak.


RE: Bearbin's Automated Builds - xoft - 07-28-2013

The RasPi has a sensor built into the CPU, I once found the exact linux command to execute to find out the value, alas, I don't remember it anymore.


RE: Bearbin's Automated Builds - supertransformer - 07-28-2013

(07-28-2013, 05:10 AM)xoft Wrote: The RasPi has a sensor built into the CPU, I once found the exact linux command to execute to find out the value, alas, I don't remember it anymore.

to get the tempeture its: vcgencmd measure_temp

if you want farenheight its:

#!/bin/bash
tm=`/opt/vc/bin/vcgencmd measure_temp`
tc=`echo $tm| cut -d '=' -f2 | sed 's/..$//'`
tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc)
echo $tf\°F

put that into a .sh file and then execute itTongue


RE: Bearbin's Automated Builds - bearbin - 07-28-2013

What if I want celcius? Just omit the tf line? Thanks, BTW


RE: Bearbin's Automated Builds - supertransformer - 07-28-2013

(07-28-2013, 06:02 AM)bearbin Wrote: What if I want celcius? Just omit the tf line? Thanks, BTW

If you want celsius then execute vcgencmd measure_temp command on the command line.