
The console logs are at http://buildserver/jenkins/job/MyJobName/666/consoleText Add in a shell script to grab the console log using $BUILD_URL (https://wiki.jenkins-ci.org/display/JENKINS/Building+a+software+project#Buildingasoftwareproject-JenkinsSetEnvironmentVariables) Change-Id: I481fdec77d42918a68ba13645912704948f86a36
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
echo "Grabbing consoleLog"
|
|
|
|
$console_log_path='consoleText'
|
|
wget -P /tmp --no-check-certificate $BUILD_URL$console_log_path
|