Installation¶
Requirements¶
- Apple Silicon host
- macOS 26.0+
- Jeballto Agent 0.3.3+
- GitLab Runner with custom executor support
Download the executor¶
Download jeballto-gitlab-executor from the latest release:
https://github.com/jeballto/jeballto-gitlab-executor/releases/latest
If you script the install, replace the URL with the current release asset URL:
curl -L -o jeballto-gitlab-executor \
https://github.com/jeballto/jeballto-gitlab-executor/releases/latest/download/jeballto-gitlab-executor
chmod +x jeballto-gitlab-executor
Install locally¶
sudo install -m 0755 ./jeballto-gitlab-executor /usr/local/bin/jeballto-gitlab-executor
install -m 0755 copies the file and marks it executable. If you prefer plain commands:
sudo cp ./jeballto-gitlab-executor /usr/local/bin/jeballto-gitlab-executor
sudo chmod 0755 /usr/local/bin/jeballto-gitlab-executor
Verify the binary¶
/usr/local/bin/jeballto-gitlab-executor config
Build-from-source steps live in Development.