We have two announcements to make. First of all is the successful migration from Travis-CI and AppVeyor to GitHub Actions. Although there are still a few teething issues, we are hopeful that they could be ironed out in the next few days. Thanks to GH Actions, the new CI/CD workflow could do more things than otherwise possible in the past. We now have both clang-tidy and clang-format check. We are able to perform Android build without cutting any corners like in the past. We even can do new scaffolding test for Android build now with the improved Gradle build system, done while in the migration process. The overall CI/CD workflow currently has 62 jobs in total, running with 3 types of runners: Linux, MacOS, and Windows. The jobs are massively parallel, so the everything finishes much faster compared to before.
The second thing is about the Docker Open Source Program. Some of you may have already know that our CI jobs running on Linux host actually rely on Docker technology. Instead of prepping the build environment on each CI run, we actually just download the so-called “Dockerized Build Environment” image and just “run” it. The DBE builds the software for us during its runtime. The DBE image has all the Urho3D prerequisite software component pre-installed. One DBE image per target platform supported by Urho3D. The images are hosted in the docker.io, a public Docker registry provided by Docker Hub. With the acceptance of Urho3D into Docker Open Source Project Program, our DBE images can be pulled without any pull rate restriction.
So, do not hesitate to fork and turn on the CI/CD workflow on your fork.