Address PR feedback
This commit is contained in:
parent
0dbc51890e
commit
8b4df2d31f
2 changed files with 1 additions and 3 deletions
|
@ -27,11 +27,9 @@ def static getBuildJobName(def configuration, def os) {
|
||||||
|
|
||||||
// Calculate the build command
|
// Calculate the build command
|
||||||
if (os == 'Windows_NT') {
|
if (os == 'Windows_NT') {
|
||||||
// On Windows we build the mscorlibs too.
|
|
||||||
buildCommand = ".\\scripts\\ci_build.cmd ${lowerConfiguration}"
|
buildCommand = ".\\scripts\\ci_build.cmd ${lowerConfiguration}"
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// On other OS's we skipmscorlib but run the pal tests
|
|
||||||
buildCommand = "./scripts/ci_build.sh ${lowerConfiguration}"
|
buildCommand = "./scripts/ci_build.sh ${lowerConfiguration}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
source $SCRIPT_DIR/../build.sh $@
|
$SCRIPT_DIR/../build.sh $@
|
||||||
|
|
||||||
ret_code=$?
|
ret_code=$?
|
||||||
exit $ret_code
|
exit $ret_code
|
||||||
|
|
Loading…
Reference in a new issue