-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add gh actions runner setup for mac on aws #264
Conversation
Did you test this one? I mean did you create a mac machine? |
yes its tested now :) |
pkg/util/ghactions/runner.go
Outdated
@@ -75,3 +86,10 @@ func GetActionRunnerSnippetLinux() string { | |||
} | |||
return util.IfNillable(args != nil, snippetLinux, "") | |||
} | |||
|
|||
func GetActionRunnerSnippetMacos() string { | |||
return util.If(args != nil, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use same syntax as others with util.IfNillable
otherwise f not ghtunner params passed it will panic (I think)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh, yes
updated now, thanks!
this adds new flags to the command `mapt aws mac request` to to install github actions runner on the provisioned instance it also adds the additional flags to get the various values needed to setup the github actions runner Signed-off-by: Anjan Nath <[email protected]>
Signed-off-by: Anjan Nath <[email protected]>
Fixes #197 |
this adds new flags to the command
mapt aws mac request
to to install github actions runner on the provisioned instanceit also adds the additional flags to get the various values needed to setup the github actions runner