Skip to content

unidev-games/extender

 
 

Repository files navigation

Extender

Extender is a build server that builds native extensions of the Defold engine.

Development

This describes how to run the build server locally.

Prerequisites

  • Make sure you have Docker installed and running.

  • If you are not part of the team that makes releases, you can skip this step:

    • Clone this repo with the recurse-submodules parameter:

      • git clone --recurse-submodules
    • If you have already cloned the repo, you can init and fetch the submodule like this:

      • git submodule init
      • git submodule update
  • Make sure you have access to the url where to download packages from DM_PACKAGES_URL

    • See the Dockerfile for what actual packages are needed.
    • See defold/scripts/package folder for scripts how to create these packages.
    • If you have all files locally, you can serve them locally like so:
      • export DM_PACKAGES_URL=http://localhost
      • cd defold/local_sdks && python -m SimpleHTTPServer

Build

  • Build the Extender Docker image by running:

      $ DM_PACKAGES_URL=https://hostname/path/to/packages ./server/scripts/build.sh
    

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

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

Start

  • Then, start a container based on that image by running: ./server/scripts/run-local.sh.
  • The build server is now available on port http://localhost:9000

Stop

  • Just hit Ctrl-C.

Debug

Docker container

  • When the container is running, then run ./server/scripts/debug-local.sh. It connects to the container using the extender user, and executes bash.

  • In detail: Debugging

Client

There is a client part of this code which is used in Bob.jar.

  1. Build the client
$ cd client
$ ../gradlew build
  1. Copy the client to Bob
$ cp -v ./build/libs/extender-client-0.0.1.jar <defold>/com.dynamo.cr/com.dynamo.cr.common/ext/extender-client-0.0.1.jar

Operations

The Extender service runs on AWS EC2 Container Service, which is a platform for operating Docker containers running on EC2 instances. It runs in the cluster called prod-eu-west1.

NOTE: The EC2 instances in that cluster (prod-eu-west1) has been configured to run Docker containers with a root volume bigger than the default (30G instead of 10G) in order to handle downloaded SDK:s and temporary build files. The volume size has been increased by a script provided as user data in the launch configuration of the auto-scaling group managing the cluster instances.

Releasing

Prerequisites

  • awscli

      $ brew install awscli@1 jq
    

Releasing Stage Server

  1. Checkout the dev branch and sync: git checkout dev && git pull
  2. Checkout the beta branch and sync: git checkout beta && git pull
  3. Merge dev into beta: git merge dev
  4. Build and runs tests: ./server/scripts/build.sh
  5. Run ./server/scripts/publish-stage.sh

This will create a new task definition on AWS ECS and update the service to run this new version. The new version will be rolled out without any downtime of the service.

The target server is https://build-stage.defold.com

Releasing Live Server

  1. Checkout the master branch and sync: git checkout master && git pull
  2. Merge beta into master: git merge beta
  3. Build and runs tests: ./server/scripts/build.sh
  4. Run ./server/scripts/publish-prod.sh

The target server is https://build.defold.com (i.e. the live server!)

Creating a github release

  1. Create a git tag with increasing number:

    $ git tag -a v1.0.28 -m "informative message"

    $ git push origin --tags

  2. Create a release on github: Name: , use the new tag, write an informative description of the relevant changes

Common issues

No space left

The docker build area is set to 64GB. The area filling up will manifest itself as suddenly failing, where it previously succeeded. Then try building again, and you might see an error like (or any disc space related error):

mkdir: cannot create directory ‘/var/extender/.wine’: No space left on device

You can solve this by removing the cached images:

$ docker system prune
AWS docker instances

Sometimes the new server won't start properly and you get this cryptic message on the AWS instance:

"Thin Pool has 4350 free data blocks which is less than minimum required 4454 free data blocks"

The fix is to log on to the instance and run:

$ sudo sh -c "docker ps -q | xargs docker inspect --format='{{ .State.Pid }}' | xargs -IZ fstrim /proc/Z/root/"

About

Native extension build server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 79.8%
  • Dockerfile 7.1%
  • Shell 6.2%
  • JavaScript 4.9%
  • C++ 1.3%
  • Python 0.7%