You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.