All Projects → defold → extender

defold / extender

Licence: MIT license
Native extension build server

Programming Languages

java
68154 projects - #9 most used programming language
shell
77523 projects
Dockerfile
14818 projects
javascript
184084 projects - #8 most used programming language
C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language

Extender

Extender is a build server that builds native extensions of the Defold engine. The build server can either by run using Docker or as a stand alone server running on macOS.

Running on Docker

This describes how to build and run the extender server using Docker. It involves 4 steps:

  1. Download and prepare required packages
  2. Serve the required packages
  3. Build the Docker image
  4. Run the Docker image in a container

Prerequisites

Make sure you have Docker installed and running.

Download and prepare required packages

Most of the SDKs used by Extender server have licenses that prevent third party redistribution. To efficiently work with the build server it is recommended to package the SDKs and serve them from a private URL. The URL is defined as the DM_PACKAGES_URL environment variable.

The Dockerfile lists the actual packages needed per platform:

We have prepared scripts to package the required files. Use the scripts in the defold/scripts/package folder to create these packages.

NOTE: If you only plan to use the extender server to build for a single platform you may remove the setup steps for the other platforms to speed up the build process.

Serve the required packages

When the packages are downloaded you need to make them available when the Docker container is built. The recommended way is to serve the files using Python:

# Using python 2
$ export DM_PACKAGES_URL=http://localhost
$ cd local_sdks && python -m SimpleHTTPServer
# Using python 3
$ export DM_PACKAGES_URL=http://localhost:9999
$ cd local_sdks && python -m http.server 9999

Build the Docker image

Build the Extender Docker image by running:

./server/scripts/build.sh

To speed things up, tests can be disabled by passing -xtest to the command line.

$  ./server/scripts/build.sh -xtest

NOTE: The first time you build it will take a while (approx. 45 minutes). After that the Docker cache will speed it up.

NOTE: For Windows, I ran this using Git Bash. It may be possible to speed it up by creating a .bat file for it, and running it in the Command Prompt.

Run the Docker image in a container

Start the container based on the Docker image that was built by running:

Bash:

$ ./server/scripts/run-local.sh

Command Prompt:

> server\scripts\run-local.bat

The Extender server is now available on port http://localhost:9000

Stop the server

You can stop the server by pressing Ctrl-C from the terminal prompt where it was started.

NOTE: On Windows, it may be that the Ctrol+C doesn't work. Then you can stop the container using the Docker Desktop client.


Running as a standalone server on macOS

The stand alone server is currently used on a machine runing macOS. The server is used to build darwin targets (macOS+iOS) using the Apple tools (XCode+Apple Clang)

Prerequisites

Ensure that you have the following tools packaged

  • macOS 12.1
  • XCode 13.2.1
    • iOS SDK 15.2
    • Clang 13.0.0
    • Swift 5.5

NOTE: Above requirements taken from the Dockerfile. Double-check that they are still accurate!

Run

To run the stand alone server locally, you need to give it access to /usr/local/extender:

$ sudo mkdir /usr/local/extender
$ sudo chown -R mawe:staff /usr/local/extender

Now the current user has access to the folder and can start the service.

    $ TARGET_DIR=/path/to/localextender ./server/scripts/run-standalone-local.sh

It will start a server at localhost:9010. If you run the script again, the server will be stopped and then restarted with the latest extender.jar

Stop

To stop a local server started with run-local.sh, simply press CTRL+C.

To stop the stand alone service, you need to call stop on the current service script, and also provide the folder with the .pid file:

$ ./local/current/service.sh stop ~/work/extender/local

or (if you used the vanilla startup):

$ /usr/local/extender/current/service.sh stop /usr/local/extender
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].