Make BitBucket macOS runner auto-start after computer reboot

Oleksii December 7, 2022

Hello,

 

I'm already using macOS self hosted runners at mac machine, everything works well until computer reboots, after which I need navigate into runner's bin folder and execute the long script, e.g.:

 ./start.sh --accountUuid {13xxxxxxxxx3ae} --repositoryUuid {8fxxxxxxxxx513} --runnerUuid {04xxxxxxxxx1d9} --OAuthClientId yGxxxxxxxxxJxK --OAuthClientSecret ATxxxxxxxxxxA0A --runtime macos-bash --workingDirectory ../temp

 

I'm looking for a way to make runner auto-start after computer reboot, so that it become ONLINE and able to run pipeline which include building react-native app and testing it on the same mac.

I've already tried to set up it using launchd, and the runner was ONLINE and was able to start build process, but I faced with multiple compilation issues, because launchd is starting runner with root user permissions.

I've reviewed these two posts (Solved: Bitbucket self hosted runner autostart (atlassian.com) and Solved: Start and restart Windows self-hosted runner autom... (atlassian.com)), and they didn't give me enough info for my case. 

Could you please propose or share any best practices on how to setup runner auto-start at mac after reboot?

 

 

Thank you

 

1 answer

0 votes
Frank Lichtenheld September 14, 2023

I used the following plist and it worked fine for me. Note the use of UserName:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>bitbucket-runner</string>
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>{{ working_dir }}/start.sh</string>
<string>--accountUuid</string>
<string>{{ BitbucketAccountUuid }}</string>
<string>--runnerUuid</string>
<string>{{ BitbucketRunnerUuid }}</string>
<string>--OAuthClientId</string>
<string>{{ BitbucketOAuthClientId }}</string>
<string>--OAuthClientSecret</string>
<string>{{ BitbucketOAuthClientSecret }}</string>
<string>--runtime</string>
<string>macos-bash</string>
<string>--workingDirectory</string>
<string>../temp</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>{{ runner_user }}</string>
<key>WorkingDirectory</key>
<string>{{ working_dir }}</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/opt/openjdk@11/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
</dict>
<key>StandardOutPath</key>
<string>/usr/local/var/log/bitbucket-runner/runner.log</string>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/bitbucket-runner/runner.stderr.log</string>
</dict>
</plist>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events