Build infrastructure setup - garsue/libgdx GitHub Wiki
Our build infrastructure has the responsiblity of building libgdx for all supported platforms (Windows, Linux, Mac OS X, Android, iOS, HTML). On top of the boring old Java code, we also need to compile the native code for each platform and architecture (32-, 64-bit if available).
We solve this issue by using cross-compilation on a Linux host to compile native code for Windows, Linux and Android. We additionally use a Mac to compile the iOS and Mac OS X native binaries.
The following sections document how to setup this build infrastructure.
The Linux host has to be a 64-bit installation. We use Ubuntu 13.10, newer releases or other Linux distributions should work just as well. The following Debian packages can be installed from the official repositories
- unzip
- zip
- daemon
- git
- openjdk-7-jdk
- jenkins (latest)
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
- add
deb http://pkg.jenkins-ci.org/debian binary/
to/etc/apt/sources.list
-
sudo apt-get update
followed bysudo apt-get install jenkins
, this will install the latest Jenkins version and provide an update path in the future instead of using the Jenkins version from the Ubuntu repositories - after installation, open
/etc/default/jenkins
and setHTTP_HOST
andAJP_HOST
to0.0.0.0
to listen for connections on all net devices - setup users, enable global security using the Jenkins user database, letting any logged in user to anything
- install the following plugins: Copy to Slave Plugin, Git Plugin, Mailer, Maven Project Plugin, Parameterized Trigger Plugin, Gradle Plugin
- Go to the "Configure System" site and set the Ant and installation locations
- gcc, g++, gcc-multilib, g++-multilib (linux compilers, 32- and 64-bit)
- mesa-common-dev, libxxf86vm-dev, libxrandr-dev, libx11-dev:i386 (Linux OpenGL development, only needed for jglfw, 64-bit only)
- mingw-w64 (windows compilers, 32- and 64-bit)
- ccache (optional, see ccache section below)
- lib32z1 (cause Android SDK tools require it, aapt to be specific...)
The following software has to be installed manually
-
Ant 1.9.3+ (fixes a bug that's vital for build time reduction!)
- Download the latest binary distribution, unzip it to /opt/ant
- Add
export PATH=$PATH:/opt/ant/bin
to/etc/profile
- Make sure the Jenkins user can execute Ant
-
Maven 3+
- Download the latest binary distribution, unzip it to /opt/maven
- Add
export PATH=$PATH:/opt/mave/bin
to/etc/profile
- Make sure the Jenkins user can execute Maven
- modify /opt/maven/conf/settings.xml to include the credentials for SonaType snapshot deployment (ask Mario)
-
Android NDK
- Download the latest tar.bz2, unpack to
/opt/android-ndk
- Add
export ANDROID_NDK=/opt/android-ndk
to/etc/profile
- Add
export NDK_HOME=/opt/android-ndk
to/etc/profile
- Make sure the Jenkins user can execute ndk-build
- Download the latest tar.bz2, unpack to
- [Android SDK]
- Download the latest .tgz, unpack to /opt/android-sdk
- Add
export ANDROID_HOME=/opt/android-sdk
to/etc/profile
- In
/opt/android-sdk/tools
, run./android update sdk --no-ui
to install all platforms, build tools etc.
We need a Mac to build natives for iOS and Mac OS X. This host will then be used as a Jenkins slave to build parts of the libgdx project. This dependency is expressed in the Jenkins Jobs responsible for building libgdx, see below. The Mac needs to have the following things installed:
- JDK 8+
- XCode, install via the Mac App Store
- Make sure the command line utilities are also installed, search Google for how to do this with the latest XCode.
- you don't need a developers license to compile for a device, you just can't deploy to one
- Ant 1.9.3, install via Homebrew
- (optional) ccache via Homebrew
Once the Mac is setup, you can move on to setting up the Jobs on Jenkins
With your Linux host running Jenkins, go to http://JENKINS_ADDRESS:8080.
- On the landing page, click on
Manage Jenkins
, then go toManage Nodes
. - Click on
New Node
, give it the nameMac
, selectDumb Slave
and pressOK
. - Set the
Remote FS root
to a folder of your choice, e.g./Users/badlogic/jenkins
- Set
Usage
toLeave this machine for tied jobs only
- Set
Launch method
toLaunch Slave agents via Java Web Start
You can now startup your Mac, open a browser and navigate to http://JENKINS_ADDRESS:8080/computer/Mac/. Click on the Launch
button to download the Java Web start file, double click it to run the slave. Once it's running, you should see marked as being online in your Jenkins instance.
The Mac job calls into the build-mac-ios.xml Ant script, then copies all the Mac and iOS native libraries to the Linux master node which will then continue building the rest of libgdx. For this we need to create a job, let's call it libgdx-mac.
- Click
New Item
, enterlibgdx-mac
as the name, and selectFreestyle Project
, pressOK
- Click
Discard Old Builds
, set max # builds to keep to 1 - Click
Restrict where this project can be run
and enter the name of the Mac slave (Mac
) - Under
Source Code Management
, select git and specify the libgdx repo URLhttps://github.com/libgdx/libgdx.git
, leave the rest as is (branch master etc.) - Under
Build
, clickAdd build step
, selectInvoke Ant
, setTargets
to-f build-mac-ios.xml -v
- Under
Post-build Actions
, clickAdd post-build action
, selectCopy files back to the job's workspace on the master node
, and forFiles to copy
sepcify**/*.a,**/*.dylib
. UncheckRun After Result Is Finalised?
. Click onAdvanced
, then checkOverride destination folder
and set it to/var/lib/jenkins/workspace/libgdx
or wherever your libgdx workspace lives on the Linux host. This will copy all the Mac and iOS native libraries back to the master node, which will pack it with the native libraries for the other platforms - Under
Post-build Actions
, clickAdd post-build action
, selectE-mail Notification
, specify the recipients, use a space as a separator.
The main job is executed on the Linux host, which builds all Java related things, all Windows, Linux and Android native files, invokes the Mac job and copies the Mac and iOS natives over, then finally packages it all up neatly and distributes the nightly build to the website and pushes the Maven artifacts to SonaType. Here's how that job's setup
- Click
New Item
, enterlibgdx
as the name, and selectFreestyle Project
, pressOK
- Click
Discard Old Builds
, set max # builds to keep to 1 - Under
Source Code Management
, select git and specify the libgdx repo URLhttps://github.com/libgdx/libgdx.git
, leave the rest as is (branch master etc.) - Under
Build Triggers
, selectPoll SCM
and setSchedule
to@hourly
- Under
Build
, clickAdd build step
, selectTrigger/call builds on other projects
, setProjects to build
tolibgdx-mac
, checkBlock until the triggered projects finish their builds
- Under
Build
, clickAdd build step
, selectInvoke Ant
, setTargets
to-f build.xml -Dbuild-natives=true -Dversion=nightly -v
- (Optional) Under
Build
, clickAdd build step
, selectExecute shell
, then write a shell script to copy the outputs of the libgdx build (nightly zip) to a webserver of your choice. See below for an example - Under
Build
, clickAdd build step
, selectInvoke top-level Maven targets
, setGoals
toclean deploy
- Under
Post-build Actions
, clickAdd post-build action
, selectE-mail Notification
, specify the recipients, use a space as a separator.
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/*.zip
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/*.zip.MD5
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/dist
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/docs
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/config
cp $WORKSPACE/libgdx-nightly.zip /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-`date +%Y%m%d`.zip
cp $WORKSPACE/libgdx-nightly.zip.MD5 /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-`date +%Y%m%d`.zip.MD5
ln -s /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-`date +%Y%m%d`.zip /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-latest.zip
ln -s /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-`date +%Y%m%d`.zip.MD5 /srv/www/libgdx.badlogicgames.com/public_html/nightlies/libgdx-nightly-latest.zip.MD5
cp -r $WORKSPACE/dist/docs /srv/www/libgdx.badlogicgames.com/public_html/nightlies/docs
cp -r $WORKSPACE/dist/ /srv/www/libgdx.badlogicgames.com/public_html/nightlies/
cp -r $WORKSPACE/extensions/gdx-setup-ui/config /srv/www/libgdx.badlogicgames.com/public_html/nightlies/
rm -rf /srv/www/libgdx.badlogicgames.com/public_html/nightlies/.svn
The native builds can take considerable time, as such we'd like to only build what changed. Our C/C++ build system is based on a custom set of Ant scripts which do not support incremental builds (but are super easy to setup, see jnigen. And even (C)Make builds don't necessarily help you with incremental builds. Also, you want to clear your build if you publish snapshots, so any incremental build you get from a proper C/C++ build tool doesn't really help.
To solve this issue, we use ccache which caches compilation results (object files). Ccache acts as a proxy to C/C++, hashes any sourcecode file you push through it (epxanding preprocessor macros and includes), checking if it has a binary fitting that hash in it's cache. If it does, it can directly return the object file instead of having to invoke GCC. Which is nice, as it gives us sort of incremental builds even if we clean out any previous build results!
Setting up ccache for cross-compilation is pretty simple.
- Install ccache via
apt-get install ccache
- Create a directory
/opt/ccache
owned by the jenkins user - Add a line at the bottom of
/etc/profile
like this:export PATH=/opt/ccache:$PATH
- Add a line at the bottom of
/etc/profile
like this:export NDK_CCACHE="ccache"
, this will make the Android NDK use ccache! - For each compiler executable (gcc, g++, i686-w64-mingw32-gcc, i686-w64-mingw32-g++, x86_64-w64-mingw32-gcc, x86_64-w64-mingw32-g++), create a script that looks analogous to this:
ccache /usr/bin/x86_64-w64-mingw32-gcc "$@"
And that's it. Through this, we proxy all compiler calls through ccache which will speed up our build considerably.
- Install ccache through Homebrew
- Create a directory
/opt/ccache
owned by the jenkins user - Add a line at the bottom of
/etc/profile
like this:export PATH=/opt/ccache:$PATH
- For each compiler executable (gcc, g++), create a script that looks analogous to this:
ccache /usr/bin/g++ "$@"
Through this, we proxy all compiler calls for Mac OS X native compilation through ccache, speeding up our build. I have yet to figure out a way to make this work with our iOS native builds.