Anka Cloud Gitlab Executor

Veertu’s Anka and the new Anka Cloud Gitlab Executor

Veertu’s Anka is a suite of software tools built on the macOS virtualization platform. It enables the execution of single or multi-use macOS virtual machines (VMs) in a manner similar to Docker. Anka is specifically designed for DevOps and CI/CD teams, large or small, that need to build and test macOS or iOS applications. Leveraging the official Apple hypervisor/virtualization technology, Anka offers enhanced performance and security.

The Anka Build Cloud serves as a unified management interface for Anka Build Nodes (hosts), VM instances, VM Templates/Tags, and logs. It features intelligent queueing and load balancing for handling numerous concurrent CI/CD job macOS VM requests. Additionally, it integrates with widely-used CI/CD servers and tools such as Jenkins, Github Actions, Buildkite, TeamCity, GitLab, and provides an API for custom integrations.

For many years, Veertu has provided a forked version of the official Gitlab Runner code with the Anka executor built into it. Users would typically use the binaries we built and deploy/run them alongside the official Gitlab Runners they may already be using for non-macOS jobs. This seemed to work just fine for most customers, but often the versions of the core Gitlab Runner code would drift and fall behind. We attempted to merge the Anka executor into the official GitLab Runner repo so it would be included in every release, but it was rejected by the official runner team.

The GitLab maintainers realized that maintaining merge requests for the built-in executors was a massive maintenance burden and in version 12.1 released Gitlab Runner Custom Executors that vendors could use to load their executors into the runner without needing any changes to the base Gitlab code. Once the Gitlab Runner Custom Executor matured enough, we decided to shift our focus to building our own Custom Executor: The Anka Cloud GitLab Executor.

Getting started using the Anka Cloud Gitlab Executor

1. Prerequisites

  1. Install and Register a self-managed Gitlab Runner (more info).
  2. An active Anka Build Cloud.
  3. An Anka VM Template in the Anka Build Cloud Registry with git installed, Remote Login enabled, and SSH port forwarding configured (more info).

2. Installation

Download the Binary:

LATEST_VERSION="$(curl -IkLs -o NUL -w %{url_effective} https://github.com/veertuinc/anka-cloud-gitlab-executor/releases/latest | rev | cut -d/ -f1 | rev)"
curl -LO https://github.com/veertuinc/anka-cloud-gitlab-executor/releases/download/${LATEST_VERSION}/anka-cloud-gitlab-executor_Linux_x86_64
chmod +x anka-cloud-gitlab-executor_Linux_x86_64

Create the `executor-template.toml`:

GITLAB_RUNNER_CUSTOM_EXECUTOR_FILE_NAME="anka-cloud-gitlab-executor_Linux_x86_64"
cat > custom-executor.template.toml <<BLOCK
[[runners]]
  [runners.custom]
    config_exec = "/mnt/${GITLAB_RUNNER_CUSTOM_EXECUTOR_FILE_NAME}"
    config_args = ["config"]
    prepare_exec = "/mnt/${GITLAB_RUNNER_CUSTOM_EXECUTOR_FILE_NAME}"
    prepare_args = ["prepare"]
    run_exec = "/mnt/${GITLAB_RUNNER_CUSTOM_EXECUTOR_FILE_NAME}"
    run_args = ["run"]
    cleanup_exec = "/mnt/${GITLAB_RUNNER_CUSTOM_EXECUTOR_FILE_NAME}"
    cleanup_args = ["cleanup"]
BLOCK

Set the Runner’s config.toml environment to point to the Anka Build Cloud Controller:

environment = [ "ANKA_CLOUD_CONTROLLER_URL=http://{controller address and port here}" ]

3. Mount the location of the executor binary into the runner’s container at /mnt.

Usage

Once the GitLab Runner and Anka Executor are running, you can now target it in your job’s .gitlab-ci.yml. We’ll use this as our example:

build:
  tags:
    - localhost-shared
  stage: build
  variables:
    ANKA_CLOUD_TEMPLATE_ID: "5d1b40b9-7e68-4807-a290-c59c66e926b4"
    ANKA_CLOUD_TEMPLATE_TAG: "v1"
  script:
    - hostname
    - echo "Echo from inside of the VM!"
    - sleep 20

In the above example, we define the Runner Tag, Anka VM Template ID, VM Tag, and commands that will run inside of the Anka macOS VM.

Once the job is executed, the runner will request a VM start on one of the Anka Build Cloud Nodes, and once the VM is ready, SSH into it and execute the commands in the script section.


That’s all you need to get started! Take a look over the Anka Cloud GitLab Executor documentation and feel free to reach out to [email protected] for any questions you may have.

Share this post

Screenshot 2025-01-08 at 2.16
Next-Gen macOS GitHub Actions for Enterprises
In the dynamic world of software development, a streamlined Continuous Integration (CI) pipeline is the backbone of enterprises delivering reliable and efficient products. For macOS environments, the challenges of setting up and maintaining automation...
Read More
anka2024v1-1536x768
A Year of Anka: Highlights from 2024
We’re starting a new annual tradition here at Veertu with our A Year of Anka blog posts. We want our customers to know how the product has grown over the past year and think this is a great avenue to do so. Please enjoy and happy holidays from all...
Read More
anka-or-1
Anka vs Orka in 2024
It has been several years since we made our first side by side comparison between Anka and Orka. A lot has changed, and we believe it’s important to make sure the information out there is accurate. We’ll be specifically addressing a newer...
Read More
networking-performancev1
Unlocking Superior macOS VM Network Performance: Introducing Anka's new networking mode for Apple Silicon
Large and complex enterprises using Anka have many different demands, and we have worked to continue to develop innovative technology to meet these demands. Enterprise infrastructure hardware is often on the cutting edge, and they need advanced capabilities...
Read More
mac-scan-v1
Real-Time CVE Scanning of your macOS Build Systems
It’s common that an organization’s macOS build system will download thousands, sometimes tens of thousands of third-party dependencies every hour. When building and testing iOS applications, it typically downloads and installs third-party...
Read More
anka-on-silicon-v1
The ONLY Fully Automated Apple Silicon macOS VM Creation Solution
Starting in Anka 3.1 we announced that Anka is now able to fully automate the macOS installation processes, disabling SIP, and enabling VNC — all previously manual steps users had to perform inside o the VM. At the time of writing this article,...
Read More
anka_click
Scripting macOS UI User Actions With Anka Click
Starting in Anka 3.2, we’ve introduced a solution for scripting macOS UI user actions. You may ask, “Why would I want to do that?”. Well, often macOS configuration and applications do not have a CLI allowing you to perform certain actions...
Read More
mac-scan-fullscan-shells-v3
Real-time, continuous scan of file downloads on macOS for security vulnerabilities
Today, we are announcing the Beta availability of the Mac Scan solution. Mac Scan software runs on macOS systems (bare metal, virtual, EC2 Mac) and scans downloads in real time for security vulnerabilities. There are multiple scenarios why you would want...
Read More
Screen Shot 2022-10-17 at 10.13
Anka 3.1- Fully automated VM macOS installation & The Behavior-Driven macOS UI Automation Framework
We are very happy to announce the General Availability of Anka 3.1 for Apple Silicon / ARM macs. In this release, we are taking our approach to iOS CI automation one step further by introducing a Behavior-Driven macOS UI Automation Framework in Anka,...
Read More
ankam1v2
Migrating from Anka on Intel to Anka on M1 Mac for iOS CI
In this blog, we will cover the key topics for migrating from Anka on Intel to Anka on M1/M2 Macs. Anka is an IaaC solution from Veertu to set up an agile Container like CI for iOS CI using macOS VMs. Anka for Intel uses Apple’s Hypervisor.Framework virtualization...
Read More