Hello! I use shell script for running sbt task on different environments but by default Bamboo agent uses Java8 instead Java11. How i should setUp JAVA_HOME variable or may be i have other way if we have both Java versions on Bamboo?
Simon says:
` Please use the Command task instead of the Script task because it allows you to set the environment for the command you are executing as well as choose the command. See the details here: https://confluence.atlassian.com/bamboo/custom-command-executable-289277045.html
Obviously if you have more things being called in your current Script task like:
#!/bin/bash
<some native bash statements>
<the sbt call that needs Java 11>
<some more native bash statements>
then you can structure your Job tasks as follows:
1. Script task 1 containing the first bash statements,
2. Command task to call the sbt task with Java 11(set the Executable parameter to the absolute path of your Java 11 java binary, the Argument parameter to what you want the JVM to run,and the Environment variables to the ones you need)
3. Script task 2 containing the rest of the bash statements in the example above.
`
I hope this helps. Simon out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.