Before running the build scan and tests, you need to create a session ID. The session ID is provided to each step in order link them together as one complete cycle.
Generating a session ID in Java
Generating a session ID in Java is done using the Java Build scanner with the -config
flag.
java -jar sl-build-scanner.jar -config -tokenfile /path/to/sltoken.txt -appname "myApp" -branchname "master" -buildname "1" -pi "*com.company.*"
BASH
Using the session ID
The session ID will be printed to the console output and a file called 'buildSessionId.txt' will be generated containing it.
The file can be used as is in the different agents parameters or can be used to fill in an environment parameter to be in a command line.
Unix:
export SL_BUILD_SESSION_ID=`cat buildSessionId.txt`
Windows:
set /p SL_BUILD_SESSION_ID=<buildSessionId.txt
TEXT