Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Make BitBucket macOS runner auto-start after computer reboot

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
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Sep 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