we\'re about to wipe our Mac Mini and reinstall new XCode and Jenkins from scratch. We have just recently started using Slack and we would like to use it to receive Jenkins buil
You can try out the below open source chatbot development framework BenTen
. Comes withe out of the box slack and Jira, Jenkins integration.It will take 10–15 mins to set up the slack bot and get it working against your Jenkins instance.
https://github.com/intuit/benten
So I finally managed to do it using Slack's slash commands, strings parsing and this answer: How to set environment variables in Jenkins?
Jenkins plugins I used:
I configured my Slack slash command to call https://my-jenkins-server//buildByToken/buildWithParameters?job=JOB_NAME&token=MY_SECRET_TOKEN. So when I type '/build_my_app branch_name project_param2', the text I type after my slash command gets sent over as on URL parameter ('branch_name project_param2' in this case).
Once it gets to the other side I need to split this 'text' parameter up into multiple environment variables that Jenkins can use for the build process. To achieve this I add two pre-scm build steps.
Pre-scm build step 1 is an 'Execute shell' command which consists of the following script:
build_parameters=($text)
echo BRANCH=${build_parameters[0]} > props
echo PARAM2=${build_parameters[1]} >> props
'props' is a file I use to store the parsed strings, as trying to set the environment variables in this step using 'export' fails as the env variables do not persist when the build actually starts. This script stores the $text parameter in a string array (split by space characters), and they I just reference each index of the array to get my desired variable. Need a new job parameter? Just add another line here.
Pre-scm build step 2 is an 'Inject Environment Variables' job and in 'Properties File Path' I simply specify '$WORKSPACE/props'. This then reads the file with my parsed env variables and injects them into the job environment.
So yeah, no having to create any webapps to manually parse the 'text' parameter and then call a different URL with all the parameters set separately in the URL. No having to make a million different Jenkins jobs with each possible combination of parameter.
Hope this saves someone some time!