Is it possible to push build status notifications via SSH to Stash? Unfortunately API access requires a user login and that affects the license.
Maybe you could try to setup SSH keys between the servers to see if it works without a password. Another possibility would be to create an script with User and Password. To do it, you could use "Expect". However, you may need to install it. Below, you can see an example on how you could do it using "Expect"
#!/usr/bin/expect
spawn /path_to_your_script
expect "password:"
send — "your_password\r"
send -- "\r"
expect elf
Good Luck :)
Hi!
Seems like the new Bamboo release has a new notification type and you don't need a user anymore. This should solve your problem.
https://confluence.atlassian.com/display/BAMBOO/Bamboo+5.6+release+notes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately I'm not using Bamboo for my builds :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.